Skip to content

Instantly share code, notes, and snippets.

@lifofernandez
Created October 13, 2017 20:00
Show Gist options
  • Save lifofernandez/45cb0277e4a71a034ad6389615f55af6 to your computer and use it in GitHub Desktop.
Save lifofernandez/45cb0277e4a71a034ad6389615f55af6 to your computer and use it in GitHub Desktop.
Regexes utiles y testeados
# 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