|
|
@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
using System.Globalization;
|
|
|
|
|
|
|
|
using System.Linq;
|
|
|
|
using System.Text;
|
|
|
|
using System.Text;
|
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
|
|
|
|
|
|
|
@ -5,42 +8,49 @@ namespace NzbDrone.Common
|
|
|
|
{
|
|
|
|
{
|
|
|
|
public static class StringExtensions
|
|
|
|
public static class StringExtensions
|
|
|
|
{
|
|
|
|
{
|
|
|
|
public static string Inject(this string format, params object[] formattingArgs)
|
|
|
|
public static string NullSafe(this string target)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return string.Format(format, formattingArgs);
|
|
|
|
return ((object)target).NullSafe().ToString();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private static readonly Regex InvalidCharRegex = new Regex(@"[^a-zA-Z0-9\s-]", RegexOptions.Compiled);
|
|
|
|
public static object NullSafe(this object target)
|
|
|
|
private static readonly Regex InvalidSearchCharRegex = new Regex(@"[^a-zA-Z0-9\s-\.]", RegexOptions.Compiled);
|
|
|
|
|
|
|
|
private static readonly Regex CollapseSpace = new Regex(@"\s+", RegexOptions.Compiled);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static string ToSlug(this string phrase)
|
|
|
|
|
|
|
|
{
|
|
|
|
{
|
|
|
|
phrase = phrase.RemoveAccent().ToLower();
|
|
|
|
if (target != null) return target;
|
|
|
|
|
|
|
|
return "[NULL]";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
phrase = InvalidCharRegex.Replace(phrase, string.Empty);
|
|
|
|
public static string FirstCharToUpper(this string input)
|
|
|
|
phrase = CollapseSpace.Replace(phrase, " ").Trim();
|
|
|
|
{
|
|
|
|
phrase = phrase.Replace(" ", "-");
|
|
|
|
return input.First().ToString().ToUpper() + String.Join("", input.Skip(1));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return phrase;
|
|
|
|
public static string Inject(this string format, params object[] formattingArgs)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return string.Format(format, formattingArgs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static string ToSearchTerm(this string phrase)
|
|
|
|
private static readonly Regex CollapseSpace = new Regex(@"\s+", RegexOptions.Compiled);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static string RemoveAccent(this string text)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
phrase = phrase.RemoveAccent().ToLower();
|
|
|
|
var normalizedString = text.Normalize(NormalizationForm.FormD);
|
|
|
|
|
|
|
|
var stringBuilder = new StringBuilder();
|
|
|
|
|
|
|
|
|
|
|
|
phrase = phrase.Replace("&", "and");
|
|
|
|
foreach (var c in normalizedString)
|
|
|
|
phrase = InvalidSearchCharRegex.Replace(phrase, string.Empty);
|
|
|
|
{
|
|
|
|
phrase = CollapseSpace.Replace(phrase, " ").Trim();
|
|
|
|
var unicodeCategory = CharUnicodeInfo.GetUnicodeCategory(c);
|
|
|
|
phrase = phrase.Replace(" ", "+");
|
|
|
|
if (unicodeCategory != UnicodeCategory.NonSpacingMark)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
stringBuilder.Append(c);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return phrase;
|
|
|
|
return stringBuilder.ToString().Normalize(NormalizationForm.FormC);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static string RemoveAccent(this string txt)
|
|
|
|
public static string CleanSpaces(this string text)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
var bytes = Encoding.GetEncoding("Cyrillic").GetBytes(txt);
|
|
|
|
return CollapseSpace.Replace(text, " ").Trim();
|
|
|
|
return Encoding.ASCII.GetString(bytes);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|