返回一行中相对数字比较集中最后的一个索引位置
园子里有人问起这个问题:
有字符串如下:
ds32Christchurch 2 b 1200 - Rosamond J.S3.
ston 2 a 916 - Sidney 34
5 a 408 - Thomas A. 12 Youkq k
3hitehaven 10 b 1317
要求返回一行中相对数字比较集中最后的一个索引
以上结果应为
1200 后面的第一个位置
916 后面的一个位置
408 后面的一个位置
1317 后面的一个位置
匆忙写下算法,留待改进:
基本算法:先把字符串转成一个字符数组,然后循环,取三个变量maxLength,tempMax,maxIndexPosition,,当连续为数字 时,tempLength++,然后与maxLength比较,记下maxLength和maxIndexPosition,直到行结束。
代码:
Code
测试代码:
public static void Main(string[] args)
{
string str = @"ds32Christchurch 2 b 1200 - Rosamond J.S3. ";
//string str = "ston 2 a 916 - Sidney 34 ";
Console.WriteLine("该行中数字比较集中的位置是:" + GetPosition(str));
Console.ReadKey();
}
{
string str = @"ds32Christchurch 2 b 1200 - Rosamond J.S3. ";
//string str = "ston 2 a 916 - Sidney 34 ";
Console.WriteLine("该行中数字比较集中的位置是:" + GetPosition(str));
Console.ReadKey();
}
得出结果:29
代码说明:
注意,此处使用Char.IsDigit(c) 没有用 Char.IsNumber(c)
关于这两个方法的区别,请查看MSDN
这个可以做个简单测试
public static void TestNumber()
{
for (int i = 0; i <= 0xffff; ++i)
{
char c = (char)i;
if (Char.IsDigit(c) != Char.IsNumber(c))
{
Console.WriteLine("Char value {0:x} IsDigit() = {1}, IsNumber() = {2}", i, Char.IsDigit(c), Char.IsNumber(c));
}
}
}
{
for (int i = 0; i <= 0xffff; ++i)
{
char c = (char)i;
if (Char.IsDigit(c) != Char.IsNumber(c))
{
Console.WriteLine("Char value {0:x} IsDigit() = {1}, IsNumber() = {2}", i, Char.IsDigit(c), Char.IsNumber(c));
}
}
}