以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  提取字符的问题  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=106046)

--  作者:轩辕绝
--  发布时间:2017/8/31 23:42:00
--  提取字符的问题

老师好,

文本框内有内容:“ABCDEFG”

我想提问一下,如何提取文本框内左边第一个字符:1

左边前两个字符:AB

右边第一个字符:G

左边第二个到第五个字符:BCDE

 

代码应该怎么写呢?


--  作者:y2287958
--  发布时间:2017/9/1 7:54:00
--  
http://www.foxtable.com/webhelp/scr/1338.htm
--  作者:有点甜
--  发布时间:2017/9/1 8:48:00
--  

dim str as string = "ABCDEFG"
msgbox(left(str, 2))
msgbox(right(str, 1))
msgbox(str.substring(2, 4))