Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个字符串需要在有 2 个或更多空格的地方拆分,但我不想在单个空格上拆分它。
例如,一个字符串可能看起来像这样:
“某事物名称“五空格” 其他事物名称“三空格”等”
我需要拆分为:
我希望你能帮助我
正如您所说,您可以使用 RegEx 来完成此操作,但这有点矫枉过正。String.Split 方法有一个重载,它接受一个字符串数组作为分隔符:
line.Split(New String() {" "}, StringSplitOptions.None)