2021.2

Table Of Contents
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.
db
Object that allows to connect to a database.
Methods
The following table describes the methods of the db object.
Method Description Available in File
type
"Example" on
the facing
page
Method that returns a
new database
connection object.
Boundaries
Preprocessor, Extract, Condition,
Repeat, Action, and Postprocessor
steps
all
connect()
Method that returns a new database connection object.
connect(url, user, password)
This method returns a new database Connection object after connecting to the given URL and
authenticating the connection with the provided user and password information.
The function accepts arguments as described here:
https://docs.oracle.com/javase/8/docs/api/java/sql/DriverManager.html#getConnection-
Page 419