以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 提取数字 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=193821) |
-- 作者:nuoyan89 -- 发布时间:2024/10/18 8:44:00 -- 提取数字 老师,我列A中的字符为A0/A1....A99,我想提取A后面的数字,然后加+1,结果显示在列B中,如:列A中的值为:A9,提取出来的数字是9,然后加1,最后列B中显示的结果为10。 |
-- 作者:有点蓝 -- 发布时间:2024/10/18 8:51:00 -- http://www.foxtable.com/webhelp/topics/1338.htm dim s as string = "A9" msgbox(s.replace("A","")) msgbox(s.substring(1)) msgbox(s.remove(0,1))
|