1.6

Table Of Contents
leftConstraint
Number indicating the left limit from which the search is performed.
rightConstraint
Number indicating the right limit from which the search is performed.
Examples
data.findRegExp(/\d{3}-[A-Z]{3}/,"gi",50,100);
or
data.findRegExp("\\d{3}-[A-Z]{3}","gi",50,100);}}
Both expressions would match the following strings: 001-ABC, 678-xYz.
Note how, in the second version where the regular expression is specified as a string, some
characters have to be escaped with an additional backslash, which is standard in JavaScript.
get()
get(in_Region)
Retrieves an array of strings from the region defined by the in_Region object. in_Region
object can be created with a call to region.createRegion().
in_Region
ScriptRegion tabular Object.
Example
boundaries.get(region.createRegion("Email_Address"));
get(number)
get(object)
get(string)
Page 255