You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
namespace MediaBrowser.Controller.Sorting
|
|
|
|
|
{
|
|
|
|
|
public static class SortHelper
|
|
|
|
|
{
|
|
|
|
|
private enum ChunkType { Alphanumeric, Numeric };
|
|
|
|
|
|
|
|
|
|
public static bool InChunk(char ch, char otherCh)
|
|
|
|
|
{
|
|
|
|
|
var type = ChunkType.Alphanumeric;
|
|
|
|
|
|
|
|
|
|
if (char.IsDigit(otherCh))
|
|
|
|
|
{
|
|
|
|
|
type = ChunkType.Numeric;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((type == ChunkType.Alphanumeric && char.IsDigit(ch))
|
|
|
|
|
|| (type == ChunkType.Numeric && !char.IsDigit(ch)))
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|