setDotAll

setDotAll(enable: Boolean): JadeRegexPattern;

This fluent‑style method returns its own modified receiver, to allow call chaining. (By default, the dot meta character is not set.)

Call the setDotAll method of the JadeRegexPattern class with the enable parameter set to trueto specify that a dot (period) meta character in the pattern matches any character, including one that indicates a new line.

The dot meta character must be set to true before you call the compile method.

The dot meta character matches one character only, even if new lines are coded as the default end-of-line value CR/LF.

2020.0.01 and higher