我在 C# 中有一些字符串,如下所示:
interesting, fun, May 08, 2012
this is very interesting text, June 19, 2011
我想得到 2 个字符串,一个带有日期,另一个带有所有字符串
所以输出应该是这样的:
string1=interesting, fun
string2=May 08, 2012
string1=this is very interesting text
string2=June 19, 2011
感谢任何提示。