Created
October 13, 2017 20:00
-
-
Save lifofernandez/45cb0277e4a71a034ad6389615f55af6 to your computer and use it in GitHub Desktop.
Regexes utiles y testeados
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
# Remplazar espacios entre comillas por underscores | |
%s/"[^"]*"/\=substitute(submatch(0), ' ', '_', 'g')/g | |
# Remplazar espacios entre [] por underscores | |
%s/[[^]]*]/\=substitute(submatch(0), ' ', '_', 'g')/g |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment