在VB中,可以使用Trim函數去掉字符串中的空格。Trim函數會去掉字符串開頭和結尾的空格,但是不會去掉字符串中間的空格。下面是一個示例代碼:
Dim str As String
str = " hello world "
str = Trim(str)
Console.WriteLine(str) ' 輸出:hello world
如果想要去掉字符串中間的空格,可以使用Replace函數將空格替換為空字符串。下面是一個示例代碼:
Dim str As String
str = " hello world "
str = str.Replace(" ", "")
Console.WriteLine(str) ' 輸出:helloworld
如果想要去掉字符串中間的連續空格,可以使用正則表達式。下面是一個示例代碼:
Imports System.Text.RegularExpressions
Dim str As String
str = " hello world "
str = Regex.Replace(str, "\s+", "")
Console.WriteLine(str) ' 輸出:helloworld
以上是幾種常見的去掉字符串中的空格的方法,根據具體的需求選擇合適的方法。