Hi Dairon,
You're right! Indeed multiple enters were not being taken into account.
Can you try again with this pattern (\r\n)*\r?\n$ please?
So basically, the pattern
(\r\n)* - this part covers any number of enters (carriage return and new line), from 0 to any sequence of enters
\r?\n$ - and this part ensures it finishes with an enter (due to the $ symbol), with or without a carriage return before (due to ? symbol)
OML in attachment.
Regards,
João