在 C# 中将字符串切成两个或多个部分
我有一个像这样的字符串(c#,winforms):
private string source = @"CDM_DEBUG\D1_XS1000psc_1"
我想将此字符串分为两部分,第一部分应该是最后一个下划线之前的所有内容,即“CDM_DEBUG\D1_XS1000psc”,第二部分应该是“_1”。
然后我想从第一部分创建一个新字符串并将其设置为“CDM_DEBUG\D1_XS1000psc_2”
最快的方法是什么?
I have a string like this (c#, winforms):
private string source = @"CDM_DEBUG\D1_XS1000psc_1"
I want to have this string in two parts, first part should be everything before the last underscore that will be 'CDM_DEBUG\D1_XS1000psc' and second part should be '_1'.
Then I want to make a new string from the first part and make it to 'CDM_DEBUG\D1_XS1000psc_2'
what is the fastest way of doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
查看
String.LastIndexOf
。它比正则表达式更快吗?可能吧。可能不是。
Check out
String.LastIndexOf
.Is it faster than regular expressions? Possibly. Possibly not.
也许这样的东西会起作用?
Maybe something like this would work?
指数和范围 C# 8.0+ 中提供了功能,允许您使用以下简洁语法拆分字符串:
Indices and ranges functionality is available in C# 8.0+ allowing you to split the string with the following succinct syntax: