本帖最后由 clock_c 于 2014-2-25 20:31 编辑
- string pattern = @"--.*--";
- string input = "He said--decisively--that the time--whatever time it was--had come.";
- MatchCollection mc = Regex.Matches(input, pattern);
复制代码 话说为什么得不到我想要的
--decisively--
--that the time--
--whatever time it was--
而只是得到一个--decisiverly--呢
|