與正則表達式有點混淆。在正則表達式中匹配不同的url開始,javascript
URL字符串可以是'/item/new/url/bla/..'
或'/#item/url/bla/bla/..'
我需要一個正則表達式來檢查字符串的開始。在僞代碼,它可以被描述爲:
(both "/#item/" or "/item/" at the start of a string should be true).test(url)
與正則表達式有點混淆。在正則表達式中匹配不同的url開始,javascript
URL字符串可以是'/item/new/url/bla/..'
或'/#item/url/bla/bla/..'
我需要一個正則表達式來檢查字符串的開始。在僞代碼,它可以被描述爲:
(both "/#item/" or "/item/" at the start of a string should be true).test(url)
使用可選的? ..'/^\ /#?item \ /。test(url)' – mohkhan