正则表达式一

前端之家收集整理的这篇文章主要介绍了正则表达式一前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

MSDN官方文件参考:https://msdn.microsoft.com/zh-cn/library/az24scfc.aspx

eg:

1.判断字符串是否是这样组成的,第一个必须是字母,后面可以是字母、数字、下划线,总长度为5-20

var reg = /^[a-zA-z]\w[4,19]/; (\w 视情况 更换 \s);

reg.test(str);

2.编写一个javascript的函数把url解析为与页面的javascript.location对象相似的实体对象,如:url :'http://www.qq.com/index.html?key1=1&key2=2',最后输出的对象是

  1. {
  2. 'protocol':'http',
  3. 'hostname':'www.qq.com',serif; font-size:12px; line-height:1.8em"> 'pathname':'index.html',serif; font-size:12px; line-height:1.8em"> 'query':'key1=1&key2=2'
  4. }
复制代码
参考答案:

  1. var mylocation = {
  2. 'protocol':'http',
  3. 'hostname':'',serif; font-size:12px; line-height:1.8em"> 'pathname':'',serif; font-size:12px; line-height:1.8em"> 'query':''
  4. }
  5. var url = 'http://www.qq.com/index.html?key1=1&key2=2';
  6. var str=url.replace(/http\:\/\//,""); //过滤 http://
  7. var a=str.split("/"); // 以“/”分割url 存入数组
  8. mylocation.hostname=a[0];
  9. var arr=a[1].split("?");
  10. mylocation.pathname=arr[0];
  11. mylocation.query=arr[1];
  12. console.log(mylocation);
原文链接:https://www.f2er.com/regex/359776.html

猜你在找的正则表达式相关文章