[VB]取得字串首尾

文字的刪減
最左邊第幾個
最右邊第幾個

Remove 刪減的意思
Dim a = "123456789"
a = a.Remove(0, 3)
MessageBox.Show(a)

獲得"456789"
左邊第0個開始,刪除3個