当前位置:编程学习 > VB >>

VBS如何查找文档中某个特定的字符有多少个,请赐教谢谢

问题:如何查找文档中某个特定的字符有多少个
比如一篇文章,含有字样,工程师、高级工程师、低级 工程师等
怎么样用VBS来实现查找仅含工程师的字符,另外如何查找相近的如高级工程师、低级工程师,对于含有空格的如何处理?
程序写了一点:


set fso = createobject("scripting.filesystemobject")

' 读取文件
set stream = fso.opentextfile("C:\test.txt",1)
content = stream.readall()
call stream.close()

---剩下的不知道怎么来实现
--------------------编程问答--------------------
set fso = createobject("scripting.filesystemobject")

' 读取文件
set stream = fso.opentextfile("C:\test.txt",1)
content = stream.readall()
msgbox ubound(split(content,"工程师"))
call stream.close()

--------------------编程问答--------------------
引用 1 楼 sysdzw 的回复:
VB code
set fso = createobject("scripting.filesystemobject")

' 读取文件
set stream = fso.opentextfile("C:\test.txt",1)
content = stream.readall()
msgbox ubound(split(content,"工程师"))
call stream.cl……

高 --------------------编程问答-------------------- 谢谢了 非常感谢
补充:VB ,  资源
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,