如何使用regexp找到网址部分?
网址:/ text1 / text2 / text3-text4-text5-text6-text7 / aaa / 100
我怎么能找到aaa ???
答案 0 :(得分:4)
var uri = new Uri(s);
return uri.Segments[uri.Segments.Length-2];
或
new Uri(s).Segments.Where(x => x == "aaa");
或
new Uri(s).Segments.Where(x => Regex.IsMatch(x, "^a+$");
...
您的实际想要什么以及结果是什么,您的问题相当模糊。