Rematchnocase()

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

Usage

ARRAY = Rematchnocase( 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:

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

Supports passing parameters as a structure using ArgumentCollection:

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