gpt4 book ai didi

c# - 请帮我删除任何字符串的最后三个字符!

转载 作者:太空宇宙 更新时间:2023-11-03 17:07:49 25 4
gpt4 key购买 nike

测试字符串:

the%20matrix%20

如何删除最后三个字符?使用这段代码给我一个超出索引的异常:

y = y.Substring(y.Length - 4, y.Length - 1);

最佳答案

看来这不是您真正的问题;如果你想删除那个“%20”,你应该使用:

string test = "the%20matrix%20";
string clean = HttpUtility.UrlDecode(test);

if (clean.Length > 2) // if you still want to strip last chars...
clean = clean.Substring(0, clean.Length - 3);

关于c# - 请帮我删除任何字符串的最后三个字符!,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1613086/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com