Change regex to multiline

ex: https://regex101.com/r/bn9IOy/12
pull/702/head
Bond_009 6 years ago committed by Vasily
parent c05e8088d6
commit d6f3ca859e

@ -139,10 +139,8 @@ namespace MediaBrowser.MediaEncoding.Encoder
var required = codec == Codec.Encoder ? requiredEncoders : requiredDecoders;
Regex regex = new Regex(@"\s\S{6}\s(?<codec>[\w|-]+)\s{3}");
Regex regex = new Regex(@"^\s\S{6}\s(?<codec>[\w|-]+)\s+.+$", RegexOptions.Multiline);
MatchCollection matches = regex.Matches(output);
var found = matches.Cast<Match>()
.Select(x => x.Groups["codec"].Value)
.Where(x => required.Contains(x));

Loading…
Cancel
Save