我已尝试使用以下正则表达式:var regex = new Regex("code=.*?'");
来获取code = value'的值直到它击中角色'
在网页中,字符串如下所示:code = 42141241.48643196'
有人可以用正则表达式帮助我吗?
答案 0 :(得分:1)
使用此:
var regex = new Regex("code=[^']*?'");
[^']
表示除'
以外的所有字符集。
但请:请注意using regular expressions is not the correct way to parse HTML pages。