给定字符串
http://stackoverflow.com/questions/ask/index.php
…我想获得第三个斜杠(.*?)
和最后一个斜杠之间的子字符串,即:
questions/ask
如何使用 C# 中的正则表达式完成此操作?
你可以看看Uri.Segments
楼盘
Uri uriAddress1 = new Uri("http://www.contoso.com/title/index.htm");
Console.WriteLine("The parts are {0}, {1}, {2}", uriAddress1.Segments[0],
uriAddress1.Segments[1], uriAddress1.Segments[2]);
产生以下输出:
The parts are /, title/, index.htm
Uri uri = new Uri("http://stackoverflow.com/questions/ask/index.php");
string result = uri.Segments[1] + uri.Segments[2];
result = result.Remove(result.Length - 1);
Console.WriteLine(result);
Uri url = new Uri("http://stackoverflow.com/questions/ask/index.php");
string s = string.Join("", url.Segments.Take(url.Segments.Length - 1)).Trim('/');
尝试使用现有的 Uri 和 Path 类,而不是字符串匹配和正则表达式。就像是:
Path.GetDirectoryName(new Uri(url).AbsolutePath)
正确的方法是使用 Uri 对象。
Uri u = new Uri("http://stackoverflow.com/questions/ask/index.php");
string[] s = u.Segments;
其他答案是要走的路。但是,如果您仍在寻找正则表达式,这个应该可以工作:
([^/]*/[^/]*)/[^/]*$
您要查找的路径在第一个子匹配中。