gpt4 book ai didi

c# - 在最后一个特殊字符后删除字符

转载 作者:太空宇宙 更新时间:2023-11-03 21:01:56 24 4
gpt4 key购买 nike

你好,我有一个字符串可能是这样的

string str="user1,user2,user3,user4,user5,user6";

我想在最后删除所有字符串 , 然后 str 变成了 user6。我怎样才能使用 C#

最佳答案

尝试:

string newStr = str.Substring(str.LastIndexOf(",") + 1));

或添加 using System.Linq; 并使用:

string newStr = str.Split(',').Last();

关于c# - 在最后一个特殊字符后删除字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44695579/

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