我应该在这个正则表达式中添加什么来停止在“/stopHere”处的搜索,并且只返回它在该字符串之前找到的内容?
var string = "http://website.com/#!/goodText=hello/hello//stopHere=badtext";
var reg = string.match(/goodText=.*\/stopHere/);
这捕获了["goodText=hello/hello/hello/stopHere"]
,那么我将如何使它排除“/stopHere”?
谢谢!