More detailed documentation on multiline option

This commit is contained in:
dNItro 2016-01-21 03:28:19 -08:00
parent 8a8e183b80
commit 203218297c

View File

@ -1236,9 +1236,12 @@ The options can be any combination of >
By default, regular expression matching is case sensitive. With this By default, regular expression matching is case sensitive. With this
option, matching is done without regard to case. option, matching is done without regard to case.
m - multiline m - multiline
By default, if you select multiple lines, transformations are made By default, the '^' and '$' special characters only apply to the
on them entirely as a whole single line string. With this option you start and end of the entire string; so if you select multiple lines,
can work with multi line strings. transformations are made on them entirely as a whole single line
string. With this option, '^' and '$' special characters match the
start or end of any line within a string ( separated by newline
character - '\n' ).
a - ascii conversion a - ascii conversion
By default, transformation are made on the raw utf-8 string. With By default, transformation are made on the raw utf-8 string. With
this option, matching is done on the corresponding ASCII string this option, matching is done on the corresponding ASCII string