[About] Version=1.0 Author=Nic Mail=support@hiasm.com [Type] Class=Element Info=Represents a method for searching the input string for the first occurrence of the specified regular expression, using the specified matching options Tab=Strings [Property] Expression=Sets the regular expression pattern to match. ARG(string)|2| [Methods] doMatch=Searches the input string for the first occurrence of the specified regular expression, using the specified matching options. ARG(string Data, string Expression, RegexOptions Options)|1|0 onMatch=Occurs after succesfully execute a operation. ARG(Match)|2|0 onError=If an error occurs, an error message appears. ARG(string)|2|2 Match=Returns an object that contains information about the match. ARG(Match)|3|0 Value=Returns the captured substring from the input string. ARG(string)|3|2 *Captures=Returns a collection of all the captures matched by the capturing group, in innermost-leftmost-first order (or innermost-rightmost-first order if the regular expression is modified with the RegexOptions.RightToLeft option). The collection may have zero or more items. ARG(CaptureCollection)|3|0 *Empty=Returns the empty group. All failed matches return this empty match. ARG(Match)|3|0 *Groups=Returns a collection of groups matched by the regular expression. ARG(GroupCollection)|3|13 *Index=Returns the position in the original string where the first character of the captured substring was found. ARG(int)|3|1 *Length=Returns the length of the captured substring. ARG(int)|3|1 *Success=Returns a value indicating whether the match is successful. ARG(bool)|3|104 Data=Defines the string to be tested for a match. ARG(string)|4|2 Expression=Defines the regular expression pattern to match. ARG(string)|4|2 Options=Defines a bitwise combination of the enumeration values that modify the regular expression. ARG(RegexOptions)|4|0