Last active
August 29, 2015 14:07
-
-
Save ryan-scott-dev/2490ac13e7afa3384548 to your computer and use it in GitHub Desktop.
Ruby related Regex's
This file contains hidden or 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
| # Find all strings using " unnecessarily | |
| "([^#"'\n;]+)" | |
| # Replace with ' | |
| '\1' |
This file contains hidden or 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
| # Find all hashes using '=>' syntax | |
| :([^'"=>;\n]+) => | |
| # Replace with symbol syntax | |
| \1: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment