admin管理员组文章数量:1344960
I need to create a regular expression that is able to determine //example or //www.example in the website URL . I get the url location of website by ,
var urlOfWeb = location.href ;
I created a regular expression in JavaScript which gives an irregular output when run multiple times . I tried it in firefox browser / console / Phpstorm IDE . Here is the expression ,
// The regular expression
var expToLookFor = /(\/\/example|\/\/www\.example)/g;
// Using test method of Regexp object of javascript which gives bool result
expToLookFor.test("//example") ;
// Result : true
expToLookFor.test("//example") ;
// Result : false
I need to create a regular expression that is able to determine //example or //www.example in the website URL . I get the url location of website by ,
var urlOfWeb = location.href ;
I created a regular expression in JavaScript which gives an irregular output when run multiple times . I tried it in firefox browser / console / Phpstorm IDE . Here is the expression ,
// The regular expression
var expToLookFor = /(\/\/example|\/\/www\.example)/g;
// Using test method of Regexp object of javascript which gives bool result
expToLookFor.test("//example") ;
// Result : true
expToLookFor.test("//example") ;
// Result : false
Share
Improve this question
asked Apr 6, 2015 at 16:36
Siddharth SharmaSiddharth Sharma
1,7112 gold badges19 silver badges35 bronze badges
3
-
Get rid of the
g
flag in your regular expression. – Pointy Commented Apr 6, 2015 at 16:38 -
1
Also it would be simpler to do
/\/\/(?:www\.)?example/
– Pointy Commented Apr 6, 2015 at 16:38 - 1 @siddarth there are many questions here regarding this issue. Please do a search before asking. – Avinash Raj Commented Apr 6, 2015 at 16:38
1 Answer
Reset to default 9Remove global flag from your regex to make it:
var expToLookFor = /(\/\/example|\/\/www\.example)/;
As g
flag makes RegExp
object remember it's last position lastIndex
.
Better you refactor your regex to:
var expToLookFor = /\/\/(www\.)?example/;
本文标签: regexRegular expression in javascript with OR conditionStack Overflow
版权声明:本文标题:regex - Regular expression in javascript with OR condition - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743759579a2534125.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论