I am never sure about regular expressions. But here is a example to find spaces at the end of a line and replace them with no spaces
Find: [ ]\n
Replace: \n
I am sure there are others. But this one I cannot believe has to be done. In a development environment spaces at the end of the line are just a waste of computing time, especially with browsers
Find: [ ]\n
Replace: \n
I am sure there are others. But this one I cannot believe has to be done. In a development environment spaces at the end of the line are just a waste of computing time, especially with browsers
Comments