I want to remove trailing white spaces and tabs from my code without removing empty lines.
I tried:
\\s+$
and:
([^\\n]
Regex to find trailing and leading whitespaces:
^[ \t]+|[ \t]+$