Find Method (Regex Object)¶
Searches the specified string for the regular expression and returns a Matches collection if a match is found. If the Global property is set, this method can be repeated with the same parameter to retrieve several matches. strText Specifies a string to search for the regular expression. Returns a Matches collection if the specified string contains the matched regular expression. This functions returns null if no match is found. Supported in EmEditor Professional Version 15.9 or later.¶
[JavaScript]¶
match = reg.Find( strText );
[VBScript]¶
match = reg.Find( strText )
Parameters¶
Return Values¶
Examples¶
[JavaScript]¶
re = editor.regex;
re.Engine = eeExFindRegexOnigmo;
re.Pattern = "[A-Z0-9.\%+-]+@[A-Z0-9.-]+\\\.[A-Z]{2,}";
re.IgnoreCase = true;
re.OnlyWord = false;
matches = re.Find( "The email address is john@test.com." );
if( matches ) {
match = matches.Item(0);
alert( "Found: FirstIndex = " + match.FirstIndex + " , Length = " + match.Length + ", Value = " + match.Value );
}
[VBScript]¶
Set re = editor.regex
re.Engine = eeExFindRegexOnigmo
re.Pattern = "[A-Z0-9.\%+-]+@[A-Z0-9.-]+\\.[A-Z]{2,}"
re.IgnoreCase = True
re.OnlyWord = False
Set matches = re.Find( "The email address is john@test.com." )
If Not IsNull( matches ) Then
Set match = matches.Item(0)
alert( "Found: FirstIndex = " & match.FirstIndex & " , Length = " & match.Length & ", Value = " & match.Value )
End If
Version¶