我的图片网址路径如下:
http://localhost:3810/images/test.png
我正在寻找的是分割路径并获取路径,例如:/images/test.png 使用剃刀。
任何帮助或建议都将不胜感激
答案 0 :(得分:3)
您可以像这样使用Uri类:
@{
Uri uri = new Uri("http://localhost:3810/content/images/thumbs/0000019.png");
string path = uri.PathAndQuery;
}
path
变量将为/content/images/thumbs/0000019.png
。