MrBot.Net/MRBot/Extensions/StringExtensionMethods.cs
2023-12-08 15:20:12 -06:00

14 lines
411 B
C#

using System.Text.RegularExpressions;
namespace MRBot.Extensions
{
public static class StringExtensionMethods
{
private static readonly Regex TrailingRomanNumeralRegex = new Regex(@"\s+[IVX]+$", RegexOptions.Compiled);
public static string RemoveRomanNumeralsFromEnd(this string lhs)
{
return TrailingRomanNumeralRegex.Replace(lhs, "");
}
}
}