标签: c# c#-4.0
我有一个像“house1_508_17.5_end003”这样的字符串。基本上我想从这个字符串中得到508,17.5。
答案 0 :(得分:1)
您可以拆分_字符。
_
string s = "house1_508_17.5_end003"; string[] digits = s.Split('_'); foreach (string digit in digits) { Console.WriteLine(digit); }