Rematch()

Returns an array of strings of all the matches that the given regular expression found performing a case-sensitive match

Usage

ARRAY = Rematch( regular, string, unique )
Argument Summary
regular regular expression
string string to search
unique unique only - default false. Returns only unique finds, repeated results are not returned [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

Rematch(
   regular=?, 
   string=?, 
   unique=?
);

Supports passing parameters as a structure using ArgumentCollection:

Rematch( ArgumentCollection={
   regular : ?, 
   string : ?, 
   unique : ?
} );