Allow letter in sub# in structured titles - thx Milenko :)

This commit is contained in:
niksedk 2019-10-02 21:13:39 +02:00
parent 19f18ce588
commit b6c481fcc6

View File

@ -8,7 +8,7 @@ namespace Nikse.SubtitleEdit.Core.SubtitleFormats
{
public class StructuredTitles : SubtitleFormat
{
private static readonly Regex RegexTimeCodes = new Regex(@"^\d\d\d\d : \d\d:\d\d:\d\d:\d\d,\d\d:\d\d:\d\d:\d\d,\d{1,2}", RegexOptions.Compiled);
private static readonly Regex RegexTimeCodes = new Regex(@"^\d\d\d\d( |[a-z]): \d\d:\d\d:\d\d:\d\d,\d\d:\d\d:\d\d:\d\d,\d{1,2}", RegexOptions.Compiled);
private static readonly Regex RegexSomeCodes = new Regex(@"^\d\d \d\d \d\d", RegexOptions.Compiled);
private static readonly Regex RegexText = new Regex(@"^[A-Z]\d[A-Z]\d\d ", RegexOptions.Compiled);