asp 정규 표현 식

3211 단어 정규 표현 식
asp 의 정규 표현 식 자 료 는 인터넷 에 많 지만 불완전 하 게 말 하 는 경우 가 많 습 니 다. 한 E 문의 글 에서 결말 을 보 았 습 니 다. 다음은 어떻게 사용 하 는 지 예 를 들 어 설명 합 니 다.

=
 
"
1,2,3,7_UP,sss
"
Set
 myRegExp 
=
 
New
 RegExpmyRegExp.Pattern 
=
 
"
(.*)(\d)_UP(.*)
"
set
 matchs 
=
 myRegExp.execute(a)response.Write(matchs(
0
).SubMatches.count 
&
"


"
)response.write(matchs(
0
).SubMatches(
0

&
 
"


"
)response.write(matchs(
0
).SubMatches(
1

&
 
"


"
)response.write(matchs(
0
).SubMatches(
2

&
 
"


"
)
'
결 과 는:
'
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

좋은 웹페이지 즐겨찾기