0

与正则表达式有点混淆。

网址字符串可以是'/item/new/url/bla/..''/#item/url/bla/bla/..'

我需要一个正则表达式来检查字符串的开头。在伪代码中可以描述为:

(both "/#item/" or "/item/" at the start of a string should be true).test(url)
4

1 回答 1

4
/^\/#?item\//.test('/#item/new/url/bla/'); // true
/^\/#?item\//.test('/item/new/url/bla/'); // true
于 2013-07-19T09:13:13.240 回答