111,125
社区成员
发帖
与我相关
我的任务
分享
string input=@"45232.1328070293,56242.1558070293,3.01280702925038,45232.1525672232,56242.1750672232,3.02256722324405,45232.1930031617,56242.1910031617,3.05800316173677,";
MatchCollection mc=Regex.Matches(input,@"(\d+\.\d+,){3}")
foreach(Match m in mc)
{
this.richTextBox1.AppendText(m.Value+ "\r\n");
}