I have following text
# Heading Level 1\\r\\n## Heading Level 2\\r\\n### Heading
Level 3\\r\\n#### Heading Level
4\\r\\n##### Heading Level 5\\r\\n###### Heading Level 6\\r\\nHeading Level 13
Alternate\\r\\n======================\\r\\n
I need to match Heading Level 13 Alternate
(basically anything b/w newline and ===
I have tried following
(?<=\\\\r\\\\n)?.*?(?=\\\\r\\\\n=+)
But the problem is that my regex is being greedy with \r\n and is going all the way back. I want to stop it at first \r\n