vb截取字符串函数

更新时间:01-23 教程 由 沉苍 分享

vb截取字符串函数?

VB 从右边截取字符串可以使用Right函数:

Private Sub Command1_Click()

s = "1234567890"

s1 = Right(s, 4)

Print s; "的右边4个字符是"; s1

End Sub

声明:关于《vb截取字符串函数》以上内容仅供参考,若您的权利被侵害,请联系13825271@qq.com
本文网址:http://www.25820.com/tutorial/14_2199121.html