标签: c# asp.net string split
我的链接如下:
http://localhost:7410/SageFrame/MusicVideoDetails.aspx/id/rLmaJ5gRgXCDxURaTcofOg==
我需要字符/ in / text,这意味着我需要:
"rLmaJ5gRgXCDxURaTcofOg=="
我该怎么做?
答案 0 :(得分:0)
试试这个:
string result = link.Substring(link.IndexOf("/id/") + 4);