正则表达式获得价值直到人物'

时间:2014-07-20 19:01:46

标签: c#

我已尝试使用以下正则表达式:var regex = new Regex("code=.*?'");来获取code = value'的值直到它击中角色'

在网页中,字符串如下所示:code = 42141241.48643196'

有人可以用正则表达式帮助我吗?

1 个答案:

答案 0 :(得分:1)

使用此:

 var regex = new Regex("code=[^']*?'");

[^']表示除'以外的所有字符集。


但请:请注意using regular expressions is not the correct way to parse HTML pages