0

我的链接如下:

http://localhost:7410/SageFrame/MusicVideoDetails.aspx/id/rLmaJ5gRgXCDxURaTcofOg==

我需要 /id/ 文本后的字符,这意味着我需要:

"rLmaJ5gRgXCDxURaTcofOg=="

我怎样才能做到这一点?

4

1 回答 1

0

尝试这个:

string result = link.Substring(link.IndexOf("/id/") + 4);
于 2013-09-17T10:32:38.533 回答