Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的链接如下:
http://localhost:7410/SageFrame/MusicVideoDetails.aspx/id/rLmaJ5gRgXCDxURaTcofOg==
我需要 /id/ 文本后的字符,这意味着我需要:
"rLmaJ5gRgXCDxURaTcofOg=="
我怎样才能做到这一点?
尝试这个:
string result = link.Substring(link.IndexOf("/id/") + 4);