Skip to content

Instantly share code, notes, and snippets.

@keicoder
Forked from rotexdegba/handy-regexes.txt
Created December 18, 2013 16:41
Show Gist options
  • Save keicoder/8025523 to your computer and use it in GitHub Desktop.
Save keicoder/8025523 to your computer and use it in GitHub Desktop.
regex : Remove spaces after last semi colon on each line, Remove spaces on blank lines
Remove spaces after last semi colon on each line of a php file.
find:
;[^\S\n]+$
relace with:
;
---------------------------------------------------------------------------------------
Remove spaces on blank lines
find:
^[^\S]+$
replace with:
blank
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment