逗号之后拆分字符串直到字符串结束 – asp.net c#

前端之家收集整理的这篇文章主要介绍了逗号之后拆分字符串直到字符串结束 – asp.net c#前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个类型的字符串

ishan,training

我想在“,”之后拆分字符串,即我希望输出

training

注意:“,”没有固定索引,因为“,”之前的字符串值在不同时间是不同的.

例如ishant,marcela OR ishu,ponda或amnarayan,mapusa等……

从以上所有字符串中我只需要“,”之后的部分

解决方法

你可以使用 String.Split
string[] tokens = str.Split(',');
string last = tokens[tokens.Length - 1]

或者,更简单一点:

string last = str.Substring(str.LastIndexOf(',') + 1);
原文链接:https://www.f2er.com/aspnet/249258.html

猜你在找的asp.Net相关文章