A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© clock_c 中级黑马   /  2014-2-21 19:35  /  1346 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 clock_c 于 2014-2-25 20:31 编辑
  1.   string pattern = @"--.*--";
  2.             string input = "He said--decisively--that the time--whatever time it was--had come.";

  3.             MatchCollection mc = Regex.Matches(input, pattern);
复制代码
话说为什么得不到我想要的
--decisively--
--that the time--
--whatever time it was--

而只是得到一个--decisiverly--呢

评分

参与人数 1技术分 +1 收起 理由
卖火柴 + 1 很给力!

查看全部评分

2 个回复

倒序浏览
string pattern = @"--.*--";           . 匹配除 "\n" 之外的任何单个字符   * 匹配前面的子表达式零次或多次

string input = "He said--decisively--that the time--whatever time it was--had come.";
--whatever time it was--单词之间有空格  当然匹配不出来啦!  [a-zA-Z  ]

评分

参与人数 1技术分 +1 收起 理由
卖火柴 + 1

查看全部评分

回复 使用道具 举报
§風過無痕§ 发表于 2014-2-21 22:59
string pattern = @"--.*--";           . 匹配除 "\n" 之外的任何单个字符   * 匹配前面的子表达式零次或 ...

原来是这样,谢谢啊
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马