本文介绍了使用正则表达式在vb文件中查找的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想找到包含在vb文件中的任何单词,除了注释代码
示例:
I want to find any word contain in vb file, except comment code
Example:
' GetType(System.String))
MyGetType(System.String))
MyGetType_String(System.String))
" 'GetType(System.Int))'"
*结果:
* Result:
MyGetType(System.String))
MyGetType_String(System.String))
" 'GetType(System.Int))'"
你做什么样的正则表达式?
What do you do pattern of Regex?
推荐答案
这篇关于使用正则表达式在vb文件中查找的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!