Refind()

Performs a case-sensitive regular expression match to the given string. If subexpression=true then it returns a structure (pos,len)

Usage

STRUCTURE = Refind( regular, string, start, subexpression )
Argument Summary
regular regular expression
string string to search
start start position - default 1 [optional]
subexpression subexpression flag - default false; determines if a structure of the position is returned, or just the position [optional]

Calling

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

Refind(
   regular=?, 
   string=?, 
   start=?, 
   subexpression=?
);

Supports passing parameters as a structure using ArgumentCollection:

Refind( ArgumentCollection={
   regular : ?, 
   string : ?, 
   start : ?, 
   subexpression : ?
} );