Created
May 1, 2013 18:16
-
-
Save kcrwfrd/5497104 to your computer and use it in GitHub Desktop.
A collection of RegEx search/replaces that I've used
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Search: | |
(-?[0-9.]+)rem | |
Replace: | |
rem($1) | |
Example: | |
2rem -> rem(2) | |
-2rem -> rem(-2) | |
1.5rem -> rem(1.5) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment