vbs中的正则表达式
假定要搜索的字符串是 str="hello world Hello World"
1--规则基本与dos中的findstr类似。有细微的差别。如果对规则有困惑的,可以在cmd中看看findstr的说明就可以了。
2--如何使用?
a--创建类RegExp
set reg=new RegExp
b--类的属性
reg.pattern---用正则表达式建立搜索模板
如: reg.pattern="hello"
reg.global=true ---确定是在str中取代全部,还是只取代第一个匹配项。
reg.replace(str,"x")---把str中的hello用x取代
reg.ignorecase=true---表示不区分大小写
c--类的方法
set matches=reg.execute(str)---方法execute创建由匹配项组成的集合对象。
要访问这个集合对象就要用语句for each ...next
该集合里面的每一个对象有两个属性
属性1 firstindex属性,
属性2 value属性
如:- for each i in matches
- wscript.echo i.firstindex,i.value
- next
-
复制代码 最后把上面的和在一起就得到一个完整的程序如下:- set reg=new regexp
- str="hello world Hello World"
- reg.pattern="hello"
- reg.ignorecase=true
- reg.global=true
- set matches=reg.execute(str)
- regstr=reg.replace(str,"x")
- wscript.echo regstr
- for each i in matches
- wscript.echo i.firstindex,i.value '‘’‘’value可以不要 ,直接写成 i
- next
- ''''for语句也可以用下面的代码
- ''''for i =0 to matches.count-1
- '''''' wscript.echo i ,matches(i)
- '''next
复制代码
[ 本帖最后由 myzam 于 2011-2-26 22:20 编辑 ] |