比如想得到字符串string strRaw="Mathematics.Operation"中‘.’的后面部分"Operation"
代码如下:
string strRaw="Mathematics.Operation";
string strNew=string.Empty;
//先求出指定字符的位置
int i=strRaw.LastIndexOf('.');
//指定位置截取
StrNew=strRaw.Substring(i+1);
比如想得到字符串string strRaw="Mathematics.Operation"中‘.’的后面部分"Operation"
代码如下:
string strRaw="Mathematics.Operation";
string strNew=string.Empty;
//先求出指定字符的位置
int i=strRaw.LastIndexOf('.');
//指定位置截取
StrNew=strRaw.Substring(i+1);
本文标题:C# 截取字符串指定字符的后面部分
本文链接:https://www.haomeiwen.com/subject/tvdlcctx.html
网友评论