@是什么意思 public string GetUrlDomainName(string strHtmlPagePath)
{
string p = @"http://[^\.]*\.(?<domain>[^\.]*)";
Regex reg = new Regex(p, RegexOptions.IgnoreCase);
Match m = reg.Match(HostUrl);
Result=m.Groups["domain"].Value;
}
其中
string p = @"的 @是什么意思啊
@c#
分享到:
------解决方案-------------------- 一般后面接一段字符串,比如路径,可以减少很多不必要的转义等,比如"c:\\1.txt"可以用@"c:\1.txt"表示。 ------解决方案-------------------- string p = @"http://[^\.]*\.(?<domain>[^\.]*)";