VB怎么实现记事本里替换的功能?
发布网友
发布时间:2024-10-03 12:15
我来回答
共4个回答
热心网友
时间:2024-11-30 08:41
自己做个函数输出
pricate function replacea(orstring as string) as string
dim rptxt(0 to 9) as string
rptxt(0)="零"
rptxt(1)="一"
....
rptxt(9)="九"
for i=0 to 9
if instr(orstring,i)<>0 then
orstring=replace(orstring,i,rptxt(i))
Doevents
end if
next
replacea=orstring
end function
'比如text1.text="我看1次不行,得8次才能处理!"
'调用
text1.text=replacea(text1.text)
这样就可以了
参考资料:http://www.qdipc.net
热心网友
时间:2024-11-30 08:41
递归搜索字符串
替换
热心网友
时间:2024-11-30 08:41
明确的说,没有更好的办法!!
只有这样一批一批的replace
热心网友
时间:2024-11-30 08:42
完全听不懂你要干什么