在VB中,Mid函數用于從字符串中提取指定位置的子字符串。
其語法如下: Mid(str, start[, length])
參數說明:
示例:
Dim str As String = "Hello World"
Dim result As String
result = Mid(str, 1, 5) ' 從第1個位置開始提取5個字符
' 結果為 "Hello"
result = Mid(str, 7) ' 從第7個位置開始提取剩余的所有字符
' 結果為 "World"
需要注意的是,VB中的字符串索引是從1開始的,而不是從0開始。