using System; public class Test { public static void Main() { string str = "@b\r210.190\r\000.000\r\n"; string result = str.Split(new char[] {'\r'}, 3)[1]; Console.WriteLine($">{result}<"); } }