If I do this:
var string = "7,11,2"
var check = string.match("/1/");
if(check != null){
doSomething();
} else {
doSomethingElse();
}
Then check
is not null
because match
has found 1
in 11
. So how should I avoid this and get 1
when it really appears?