^start of line
\[the literal [ (9110 / 1338 / 5B16)
row]the literal text row] (case sensitive) \r?optionally matches a carriage return (ASCII 13)
\na line-feed (newline) character (ASCII 10)
[^]*?any character, including newline, repeated any number of times
\r?optionally matches a carriage return (ASCII 13)
\na line-feed (newline) character (ASCII 10)
\[the literal [ (9110 / 1338 / 5B16)
rowEnd]the literal text rowEnd] (case sensitive) g modifier: global. Finds all matches instead of stopping after the first
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string