> Regular expression object

The following objects are directly related to the regexp API.

Regular expression

The global regular expression object has the following properties.

PropertyTypeDescription
regexpidstring(readonly) ID of the regular expression.
name
(required)
stringName of the regular expression.
test_stringstringTest string.

Expressions object

The expressions object has the following properties.

PropertyTypeDescription
expression
(required)
stringRegular expression.
expression_type
(required)
integerType of Regular expression.

Possible values:
0 - Character string included;
1 - Any character string included;
2 - Character string not included;
3 - Result is TRUE;
4 - Result is FALSE.
exp_delimiterstringExpression delimiter. Only when expression_type Any character string included.

Default value ,.

Possible values: ,, ., /.
case_sensitiveintegerCase sensitivity.

Default value 0.

Possible values:
0 - Case insensitive;
1 - Case sensitive.