admin管理员组文章数量:1345079
I want to know if Javascript RegExp has the ability to turn on and off case insensitivity within the regular expression itself. I know you can set the modifier for the entire regex expression, but that isn't what I'm talking about.
For example, my search string could be:
teXT To seArcH TOP SECRET
.
I want to find the insensitive case part "text to search" and then force case sensitivity for "TOP SECRET".
Thus, this wouldn't match (because of case sensitivity for top secret):
teXT To seArcH Top Secret
but this would match (first section case doesn't matter):
text to search TOP SECRET
In Perl, you can do this within the search string. Does Javascript's regular expression engine support anything like this?
I want to know if Javascript RegExp has the ability to turn on and off case insensitivity within the regular expression itself. I know you can set the modifier for the entire regex expression, but that isn't what I'm talking about.
For example, my search string could be:
teXT To seArcH TOP SECRET
.
I want to find the insensitive case part "text to search" and then force case sensitivity for "TOP SECRET".
Thus, this wouldn't match (because of case sensitivity for top secret):
teXT To seArcH Top Secret
but this would match (first section case doesn't matter):
text to search TOP SECRET
In Perl, you can do this within the search string. Does Javascript's regular expression engine support anything like this?
Share asked May 24, 2013 at 19:08 Stephen SStephen S 3661 gold badge5 silver badges17 bronze badges 2- You could do it with a insensitive regex search followed by a small test. Or by writing some code to make the regex for you. – Denys Séguret Commented May 24, 2013 at 19:10
-
1
No. JavaScript doesn't have scoped modifiers like
(?i:...)
. You pretty much have to do it yourself/[tT][eE][xX][tT] TOP SECRET/
, or break your test in two:var m = /text TOP SECRET$/i.match(s); m = m && m[0].match(/TOP_SECRET$/)
. – Mike Samuel Commented May 24, 2013 at 19:12
5 Answers
Reset to default 4You can write the RegExp in case-sensitive "longhand"
/[tT][eE][xX][tT] [tT][oO] [sS][eE][aA][rR][cC][hH] TOP SECRET/
.test('text to search TOP SECRET');
// true
An alternative approach is two regular expressions, an insensitive one followed by a strict one
function test(str) {
var m = str.match(/text to search (TOP SECRET)/i);
return (m || false) && /TOP SECRET$/.test(m[1]);
}
test('text to search TOP SECRET'); // true
test('text to search ToP SECRET'); // false
Further, function test
above can be optimised in this specific case (as the TOP SECRET
part is effectively a string literal which will always have exactly the same form), it doesn't require a second full RegExp test to check it, i.e. you can do
(m || false) && 'TOP SECRET' === m[1];
What you can do is build your regex like this :
var str = "teXT To seArch";
var r = new RegExp(
str.split('').map(function(c){return '['+c.toLowerCase()+c.toUpperCase()+']'}).join('')
+ ' TOP SECRET'
);
According to this reference page, Javascript supports:
No mode modifiers to set matching options within the regular expression.
So the answer is no, you cannot turn case sensitivity on or off within the regular expression.
Don't think so. I'd suggest doing this:
var m;
var str = "teXT To seArcH TOP SECRET";
if ((m = str.match(/text to search (top secret)/i)) && m[1].match(/TOP SECRET/)) {
// matched.
}
Why not simply use 2 Regex's?
var str = "teXT To seArcH TOP SECRET";
if (/text to search/i.test(str) && /TOP SECRET/.test(str)) {
console.log('match!');
}
I think there is rarely a good reason to make a single very plex regex to cover every case, when you could instead make a handful of Regex's which you bine with code logic. I'd much rather have small bite size Regex's from a maintenance point of view, as figuring what a plex regex actually does can be quite daunting.
本文标签: regexCan Javascript RegExp do partial case insensitivityStack Overflow
版权声明:本文标题:regex - Can Javascript RegExp do partial case insensitivity? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743772750a2536420.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论