如何高效地实现字符串操作?

发布于 2024-12-02 10:20:47 字数 71 浏览 0 评论 0原文

我有一个字符串 ="/show/sea​​rch/All.aspx?Att=A1"。如何有效地获取“Att=”之后的最后一个值?

I have a string ="/show/search/All.aspx?Att=A1". How to get the last value after the 'Att=' in efficient way ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

卸妝后依然美 2024-12-09 10:20:47

您可以对“=”字符进行拆分。

示例(在 C# 中):

string line = "/show/sea​​rch/All.aspx?Att=A1";

string[] parts = line.Split('=');

//parts[1]包含A1;

希望这有帮助

You could do a split on the '=' character.

Example (in C#):

string line = "/show/search/All.aspx?Att=A1";

string[] parts = line.Split('=');

//parts[1] contains A1;

Hope this helps

浮萍、无处依 2024-12-09 10:20:47

如果您只处理这个 URL,那么其他两个答案都可以正常工作。我会考虑使用 HttpUtility.ParseQueryString 方法,然后退出通过按键找到您想要的物品。

If you're only dealing with this one URL then both of the other answers would work fine. I would consider using the HttpUtility.ParseQueryString method and just pull out the item you want by key.

只想待在家 2024-12-09 10:20:47

无论什么

高效的方法

是...
试试这个:

 var str = "/show/search/All.aspx?Att=A1";
 var searchString = "Att=";
 var answer = str.Substring(str.IndexOf(searchString) + searchString.Length);

Whatever an

efficient way

is...
Try this:

 var str = "/show/search/All.aspx?Att=A1";
 var searchString = "Att=";
 var answer = str.Substring(str.IndexOf(searchString) + searchString.Length);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文