2015-08-26 22:42:40 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
|
|
|
|
|
|
namespace Nikse.SubtitleEdit.Core
|
|
|
|
|
{
|
2016-04-05 04:01:19 +02:00
|
|
|
|
public class NoBreakAfterItem : IComparable<NoBreakAfterItem>
|
2015-08-26 22:42:40 +02:00
|
|
|
|
{
|
|
|
|
|
public readonly Regex Regex;
|
|
|
|
|
public readonly string Text;
|
|
|
|
|
|
|
|
|
|
public NoBreakAfterItem(Regex regex, string text)
|
|
|
|
|
{
|
|
|
|
|
Regex = regex;
|
|
|
|
|
Text = text;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public NoBreakAfterItem(string text)
|
|
|
|
|
{
|
|
|
|
|
Text = text;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool IsMatch(string line)
|
|
|
|
|
{
|
2016-04-05 04:01:19 +02:00
|
|
|
|
// Make sure that both *line and *Text are not null.
|
|
|
|
|
if (string.IsNullOrEmpty(line) || string.IsNullOrEmpty(Text))
|
|
|
|
|
return false;
|
2015-08-26 22:42:40 +02:00
|
|
|
|
if (Regex != null)
|
|
|
|
|
return Regex.IsMatch(line);
|
2016-04-05 04:01:19 +02:00
|
|
|
|
return line.EndsWith(Text, StringComparison.Ordinal);
|
2015-08-26 22:42:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
|
{
|
|
|
|
|
return Text;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-05 04:01:19 +02:00
|
|
|
|
public int CompareTo(NoBreakAfterItem obj)
|
2015-08-26 22:42:40 +02:00
|
|
|
|
{
|
|
|
|
|
if (obj == null)
|
|
|
|
|
return -1;
|
2016-04-05 04:01:19 +02:00
|
|
|
|
if (obj.Text == null && Text == null)
|
2015-08-26 22:42:40 +02:00
|
|
|
|
return 0;
|
2016-04-05 04:01:19 +02:00
|
|
|
|
else if (obj.Text == null)
|
2015-08-26 22:42:40 +02:00
|
|
|
|
return -1;
|
2016-04-05 04:01:19 +02:00
|
|
|
|
return string.Compare(Text, obj.Text, StringComparison.Ordinal);
|
2015-08-26 22:42:40 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-01-24 11:51:04 +01:00
|
|
|
|
}
|