c# 从字符串尾部截取直到指定字符的字符串
比如从“D:\ProgramFiles\test.bin”末尾向前索引直到\截取test.bin...
比如从 “D:\Program Files\test.bin” 末尾向前索引直到 \ 截取test.bin
展开
2个回答
展开全部
软糖来回答罗。
public static class StringEx {
public static string CutR(this string str, char 结束字符) {
int len = str.Length;
int 结束 = str.LastIndexOf(结束字符);
if (结束 < 0) { return ""; }
int 长度 = len - 结束 - 1;
return str.Substring(结束 + 1, 长度);
}
}
调用方法
任意string类型变量.CutR('\')
单引号括起来分隔符。
public static class StringEx {
public static string CutR(this string str, char 结束字符) {
int len = str.Length;
int 结束 = str.LastIndexOf(结束字符);
if (结束 < 0) { return ""; }
int 长度 = len - 结束 - 1;
return str.Substring(结束 + 1, 长度);
}
}
调用方法
任意string类型变量.CutR('\')
单引号括起来分隔符。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询