Skip to content

pbMultiline - cRegEx

Enables multiline matching

Type: Property
Access: Read/Write
Data Type: Boolean
Parameters: None

Syntax

Property Boolean pbMultiline
Access Type Syntax
Read Access: Get pbMultiline to BooleanVariable
Write Access: Set pbMultiline to BooleanVariable/Value

Description

Enables multiline matching.

If True , ^ and $ match newlines within data; if False, they match the begin and end of the string.

Defaults to True.

Note that the newline character can be configured by using one of the following options in the pattern: (LF) Newline is a linefeed character. Corresponding linebreaks can be matched with \n (CR) Newline is a carriage return. Corresponding linebreaks can be matched with \r. (CRLF) Newline/linebreak is a carriage return followed by a linefeed. Corresponding linebreaks can be matched with \r\n. (ANYCRLF) Any of the above encountered in the data will trigger newline processing. Corresponding line breaks can be matched with (?:\r\n?|\n) or with \R. See below for configuration and options concerning what matches backslash-R.