我應該在這個正則表達式中添加什麼來停止「/ stopHere」處的搜索,並且只返回找到的字符串?javascript正則表達式.match停在某個字符串
var string = "http://website.com/#!/goodText=hello/hello//stopHere=badtext";
var reg = string.match(/goodText=.*\/stopHere/);
此捕獲["goodText=hello/hello/hello/stopHere"]
,所以如何將我讓它排除 「/ stopHere」?
謝謝!
在要抓取的部分周圍添加一個捕獲組。 – elclanrs