I want to test if a string in javascript contains normal brackets with an integer in it
var str="(12) this is a test";
var pat=/(([\d]+))/;
if (pat.test(str))
alert("true");
Works fine, but it also returns true when the string looks like this
var str="12) test";
var str="(12 test";
which should return false.
I want to test if a string in javascript contains normal brackets with an integer in it
var str="(12) this is a test";
var pat=/(([\d]+))/;
if (pat.test(str))
alert("true");
Works fine, but it also returns true when the string looks like this
var str="12) test";
var str="(12 test";
which should return false.
Share Improve this question edited Feb 11, 2013 at 23:57 Will Vousden 33.4k9 gold badges88 silver badges97 bronze badges asked Feb 11, 2013 at 23:54 ChrisChris 4,35410 gold badges45 silver badges87 bronze badges1 Answer
Reset to default 10Escape brackets with \
:
/\([\d]+\)/.test(str);