We have a list of titles, some of which start with numbers (e.g. 5 Ways to Make Widgets). We would like to sort this as if it were "Five Ways..." without changing the title. We know that some movie places do this, but I can't find info online on how to do it. Any ideas?
|
|
Store both the original title and the spelled-out title.
See also: http://stackoverflow.com/questions/3213/c-convert-integers-into-written-numbers |
||||
|
|
In Computer Science, when learning programming, sometimes there is an assignment to convert numbers to text. Like:
This is probably something you'll need in this case. It is a trivial assignment but it is a good lesson. |
|||
|
|
|
Create a custom comparer see http://support.microsoft.com/kb/320727. Essentially what you want to do is test if the first character is a number. If it isn't just revert to a standard string compare, if it is then you can do some additional processing to get a textual version of the number. Once you have this most sort algorithms will allow you to pass the comparer in. |
|||
|
|
|
To expand on other people's suggestions:
private static string[] digitnames = new string[]
{ "oh", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine"};
private static string ReplaceDigits(string s)
{
string convertedSoFar = ""; //could use a StringBuilder if performance is an issue.
for (int charPos = 0; charPos < s.Length; charPos++)
{
if (char.IsNumber(s[charPos]))
{
//Add the digit name matching the digit.
convertedSoFar += digitnames[int.Parse(s[charPos].ToString())];
}
else
{
//we've reached the end of the numbers at the front of the string.
//Add back the rest of s and quit.
convertedSoFar += s.Substring(charPos);
break;
}
}
return convertedSoFar;
}
This code turns "101 dalmations" into "oneohone dalmations" and "12 angry men" into "onetwo angry men". A more complete solution could be built, perhaps from Wedge's solution to a slightly different problem. I haven't tested that code, and it isn't designed to handle the string after the digits, but it's probably a good start.
private static int NumberReplacingCompare(string strA, string strB)
{
return ReplaceDigits(strA).CompareTo(ReplaceDigits(strB));
}
private static void OutputSortedStrings()
{
List strings = new List(File.ReadAllLines(@"D:\Working\MyStrings.txt")); //pull the strings from a file (or wherever they come from
strings.Sort(NumberReplacingCompare); //sort, using NumberReplacingCompare as the comparison function
foreach (string s in strings)
{
System.Console.WriteLine(s);
}
}
|
|||
|
|