This gives a null
on Chrome or NodeJS:
console.log("a\r\nb".match(/a(.|\n)*b/));
The (.|\n)*
should mean "any ASCII character including newline, and any number of them: 0 or more).
This gives a null
on Chrome or NodeJS:
console.log("a\r\nb".match(/a(.|\n)*b/));
The (.|\n)*
should mean "any ASCII character including newline, and any number of them: 0 or more).