Refindnocase()

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

Usage

STRUCTURE = Refindnocase( 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:

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

Supports passing parameters as a structure using ArgumentCollection:

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