Skip to content

Instantly share code, notes, and snippets.

@rotexdegba
Last active December 31, 2015 18:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rotexdegba/8025511 to your computer and use it in GitHub Desktop.
Save rotexdegba/8025511 to your computer and use it in GitHub Desktop.
Useful regular expressions
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