SyntaxFix
Write A Post
Hire A Developer
Questions
we can also use
(.*?\n)*?
to match everything including newline without greedy
This will make the new line optional
(.*?|\n)*?