我想从一个网站中提取一个 RTMP 链接,并且到目前为止已经设法找到它所在的行:
string line = GetLine(innerHTML, "turbo:");
// The string line now contains something like this:
// turbo: 'rtmp://fcs21-1.somewebsite.com/reflect/2996910732;0',
Match match = Regex.Match(line, @"turbo: '(rtmp://[*]+);0',$",
RegexOptions.IgnoreCase);
string key;
if (match.Success)
key = match.Groups[1].Value;
没有任何匹配项。我想从这一行中提取的内容:
turbo: 'rtmp://fcs21-1.somewebsite.com/reflect/2996910732;0',
这件作品是:
rtmp://fcs21-1.somewebsite.com/reflect/2996910732
我在正则表达式中缺少什么?