最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Test if string contains brackets with integer in it - Stack Overflow

programmeradmin2浏览0评论

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 badges
Add a ment  | 

1 Answer 1

Reset to default 10

Escape brackets with \:

/\([\d]+\)/.test(str);
发布评论

评论列表(0)

  1. 暂无评论