例如如何替换字符串
LD1091158 LD1091158 LD1091158 ScreenLysP - :10/11/2013 3:30:46 PM 1 91 / ABDLys2HB+ LD1091159 LD1091159 LD1091159 ScreenLysP - ABDLys2HA+
上面是一个字符串。在此,我想将10/11/2013 3:30:46 PM替换为空字符串。我为此使用了正则表达式,但它不起作用。
Regex.Replace(str, @"\d{1,2}/\d{1,2}/\d{4} \d\d:\d\d:\d\d [AP]M", "");
但它不工作。