vb截取字符串函数?
VB 从右边截取字符串可以使用Right函数:
Private Sub Command1_Click()
s = "1234567890"
s1 = Right(s, 4)
Print s; "的右边4个字符是"; s1
End Sub