vb修改txt指定字符
vb修改txt第7行第四个冒号和第五个冒号:中间的内容,就是直接替换掉第四个和第五个冒号中所有的内容。替换的内容在text2里面。txt中的内容会变的。不能用截取字符串。...
vb修改txt第7行第四个冒号和第五个冒号:中间的内容,就是直接替换掉第四个和第五个冒号中所有的内容。替换的内容在text2里面。txt中的内容会变的。不能用截取字符串。只能通过判断冒号来实现。
展开
3个回答
展开全部
dim s() as string,ss() as string
open "d:\123.txt" for binary as #1
s=split(input(lof(1),#1),vbcrlf)
close #1
ss=split(s(6),":") 's(6)是第7行
ss(4)=text2.text '第4个冒号和第5个冒号间的内容替换为text2的内容
s(6)=join(ss,":")
kill "d:\123.txt"
open "d:\123.txt" for binary as #1
put #1,,join(s,vbcrlf)
close #1
open "d:\123.txt" for binary as #1
s=split(input(lof(1),#1),vbcrlf)
close #1
ss=split(s(6),":") 's(6)是第7行
ss(4)=text2.text '第4个冒号和第5个冒号间的内容替换为text2的内容
s(6)=join(ss,":")
kill "d:\123.txt"
open "d:\123.txt" for binary as #1
put #1,,join(s,vbcrlf)
close #1
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询