Classes
Collections are zero-based.
RegExp
Execute(txt) | Applies the regular expression (Pattern) on txt and returns a IMatchCollection2 (See MatchCollection). If txt didn't match the .Pattern, the returned object's value of .count seems to be 0 (rather than returning nothing). |
Global | |
IgnoreCase | |
Multiline | |
Pattern | The text of the regular expression. |
Replace() | |
Test(txt) | Returns true if the regular expression (Pattern) matches txt |
MatchCollection
Count | |
Item | Returns an IMatch2 (See Match) |
Match
FirstIndex | |
Length | |
Submatches | Returns an ISubMatches (see Submatches) |
Value | |