string aa="4510010-k.18.2003-0020";
int i= aa.LastIndexOf('-');//找到-的索引位置
string cc = aa.Substring(i+1,4);//索引+1的后四位
string str = cc.TrimStart('0');//去掉前面的0
Console.WriteLine(str);//输出结果
Console.ReadKey();
int i= aa.LastIndexOf('-');//找到-的索引位置
string cc = aa.Substring(i+1,4);//索引+1的后四位
string str = cc.TrimStart('0');//去掉前面的0
Console.WriteLine(str);//输出结果
Console.ReadKey();