以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- [求助]字符串取值问题 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=163037) |
-- 作者:81538475 -- 发布时间:2021/4/21 15:51:00 -- [求助]字符串取值问题 比如有一段字符串是 “afsd213adsstarts124QQEW” 如何能够去掉黄色部分前面的所有字符呢 |
-- 作者:有点蓝 -- 发布时间:2021/4/21 16:03:00 -- dim s as string = "afsd213adsstarts124QQEW" dim i as integer = s.indexof("starts") if i > -1 then dim s1 as string = s.substring(i) msgbox(s1) end if
|