Tips of C# Regex Expression
时间:2011-03-21 来源:MicroTeam
"." don’t match “\n” in Multiline mode
“(?<group_name>regex_expression)” defines the group name. We can refer the group with match.Groups["group_name"].Value;
“(?:regex_expression)” ignores the group
Regex.Escape(string) is very useful and readable!
continue…
MicroTeam Hui
相关阅读 更多 +