以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 关于字符替换 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=159398) |
-- 作者:hnguang -- 发布时间:2020/12/25 10:09:00 -- 关于字符替换 我现在需要做一个B帐套的考勤,来适应验厂需要,其中打卡时间,如:21:30:25,怎样可以快速将将前两位替换为20 |
-- 作者:hnguang -- 发布时间:2020/12/25 10:16:00 -- 搞定了,可以了 Dim _time="21:30:25"
_time=(_time.Remove(0,2)) _time=(_time.Insert(0,"20")) Output.Show(_time) |