正则记录

Regex rx = new Regex(@"@(?:\w|\.)+",//@QQ.CC @zhangsan 你好,匹配出用户名
RegexOptions.Compiled | RegexOptions.IgnoreCase);
MatchCollection matchs = rx.Matches(msg);

你可能感兴趣的:(Others,regex)