如何使用 C# 中的字符分隔符将字符串分成两部分?
使用单字符分隔符将字符串分成两部分的最佳方法是什么?
应在分隔符的第一个实例上拆分字符串。该方法应考虑性能。它不应该假设字符串中存在分隔符、字符串有任何字符等;应该是通用代码,您可以将其插入到任何需要的地方。
(每当我需要的时候,我总是需要花几分钟来重写这类事情,所以我想我应该为此提出一个问题)
What's the best way to split a string into just two parts using a single-char separator?
The string should be split on the first instance of the separator. The method should consider performance. It shouldn't assume that the separator exists in the string, that the string has any characters, etc; should be general-purpose code you can just plug in wherever you need.
(It always takes me a few minutes to rewrite this sort of thing whenever I need it, so I thought I'd make a question for it)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您确实只想得到两个结果,请使用带有第二个参数的字符串拆分方法:
If you really want to have just two results, use the string split method with a 2nd parameter:
如果你经常需要这个,你可以将你喜欢的方式转换为 扩展方法。根据 Teoman Soygul 的建议:
If you need this frequently, you could convert your preferred way of doing it into an extension method. Based on Teoman Soygul's suggestion: