I have a string with several "\r\n" and I'm not sure how to replace it due to the several '\'. With normal '\r\n' I would do that
'some string \r\n' here'.replace(/\r\n/g, 'wtv');
But for this one I'm not sure:
// failed attempt below :(
'some string \\r\\n here'.replace('/\\r\\n/g', 'wtv);