Web サイトから 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
正規表現で何が欠けていますか?