mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
430fb9aead
Added tests for SkipArticles.
27 lines
668 B
C#
27 lines
668 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace NzbDrone.Core.Helpers
|
|
{
|
|
public class SortHelper
|
|
{
|
|
public static string SkipArticles(string input)
|
|
{
|
|
if (String.IsNullOrEmpty(input))
|
|
return String.Empty;
|
|
|
|
var articles = new List<string> { "The ", "An ", "A " };
|
|
|
|
foreach (string article in articles)
|
|
{
|
|
if (input.ToLower().StartsWith(article, StringComparison.InvariantCultureIgnoreCase))
|
|
return input.Substring(article.Length).Trim();
|
|
}
|
|
|
|
return input;
|
|
}
|
|
}
|
|
}
|