Notepad++ obviously recognizes all comments as such. Is there a way to simply delete all?
Edit: Stat-R\'s bookmark method has helped greatly, not on
To remove Powershell comments if someone find it handy:
Removing Comment in a Powershell using Notepad ++ To find just lines beginning with # (and not with # elsewhere in the line).
Regex ^[#}
enter image description here
You can select no comments just code by doing the following:
Regex ^[^#}
enter image description here