Version 1.19.0
RegexScanner Updates
Can now configure whether pattern matching uses Pattern.MULTILINE flag via method RegexScanner.setMultiline(boolean)
. Default is false
, as was the case before this was added. When set to true
, multi-line regular expressions will be possible against text which has multiple lines.
Can now configure whether pattern matching uses Pattern.DOTALL flag via method RegexScanner.setDotal(boolean)
. Default value is false
(as was the case before this was added). When set to true
, the .
(dot) character matches any character, including a line terminator.