I have tested \\v (vertical white space) for matching \\r\\n and their combinations, but I found out that \\v does not match \\r
\\v
\\r\\n
\\r
This regex also matches newline \n and carriage return \r characters.
\n
\r
(?![ \t\f])\s
DEMO
To match one or more newline or carriage return characters, you could use the below regex.
(?:(?![ \t\f])\s)+