asp 正则表达式

asp 的正则表达式资料 网上很多,但是很多讲的不完整,从一个E文的文章上看到了个究竟,下面举例说明如何使用
=   " 1,2,3,7_UP,sss "

Set  myRegExp  =   New  RegExp

myRegExp.Pattern 
=   " (.*)(\d)_UP(.*) "

set  matchs  =  myRegExp.execute(a)
response.Write(matchs(
0 ).SubMatches.count  & " <br> " )
response.write(matchs(
0 ).SubMatches( 0 &   " <br> " )
response.write(matchs(
0 ).SubMatches( 1 &   " <br> " )
response.write(matchs(
0 ).SubMatches( 2 &   " <br> " )

' 结果是:
'
3
'
1,2,3,
'
7
'
,sss

原文是这样说滴:“

The MatchCollection object returned by the RegExp.Execute method is a collection of Match objects. It has only two read-only properties. The Count property indicates how many matches the collection holds. The Item property takes an index parameter (ranging from zero to Count-1), and returns a Match object. The Item property is the default member, so you can write MatchCollection(7) as a shorthand to MatchCollection.Item(7).

The easiest way to process all matches in the collection is to use a For Each construct, e.g.:

' Pop up a message box for each match
Set myMatches = myRegExp.Execute(subjectString)
For Each myMatch in myMatches
  msgbox myMatch.Value, 0, "Found Match"
Next

The Match object has four read-only properties. The FirstIndex property indicates the number of characters in the string to the left of the match. If the match was found at the very start of the string, FirstIndex will be zero. If the match starts at the second character in the string, FirstIndex will be one, etc. Note that this is different from the VBScript Mid function, which extracts the first character of the string if you set the start parameter to one. The Length property of the Match object indicates the number of characters in the match. The Value property returns the text that was matched.

The SubMatches property of the Match object is a collection of strings. It will only hold values if your regular expression has capturing groups. The collection will hold one string for each capturing group. The Count property indicates the number of string in the collection. The Item property takes an index parameter, and returns the text matched by the capturing group. The Item property is the default member, so you can write SubMatches(7) as a shorthand to SubMatches.Item(7). Unfortunately, VBScript does not offer a way to retrieve the match position and length of capturing groups.


地址是:http://www.regular-expressions.info/vbscript.html

转载于:https://www.cnblogs.com/cfanseal/archive/2009/04/03/1429256.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值