gpt4 book ai didi

vb.net - 将多个空格替换为一个?

转载 作者:行者123 更新时间:2023-12-04 04:59:28 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





How to replace multiple white spaces with one white space

(16 个答案)


8年前关闭。




好的,所以我正在研究这个 VB.NET 程序,我尝试使用 .replace() 来执行此操作,但这不是执行此操作的最佳方法。我有一个字符串,在我不想要的数据之间有多个空格,从字符串中去除空格但 1 的最佳方法是什么?

最佳答案

这是一种使用数组的方法,以防您希望避免使用正则表达式。

给定这个起始字符串:

Dim str As String = "This   is a test      string"

你可以这样做:
Dim arr As String() = str.Split({" "c}, StringSplitOptions.RemoveEmptyEntries)
Dim compressedSpaces As String = String.Join(" ", arr)

您也可以将其合并到一行:
Dim newString As String = String.Join(" ", str.Split({" "c}, 
StringSplitOptions.RemoveEmptyEntries))

关于vb.net - 将多个空格替换为一个?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20977246/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com