Skip to content

Instantly share code, notes, and snippets.

@ricardomaia
Last active March 18, 2024 13:28
Show Gist options
  • Save ricardomaia/32e5ebdb9b317582b7050c3345b01cc4 to your computer and use it in GitHub Desktop.
Save ricardomaia/32e5ebdb9b317582b7050c3345b01cc4 to your computer and use it in GitHub Desktop.
Insert a new line each x lines

Insert a new line each x lines

Regex Find: ((?:.*\r?\n){4})

Regex Replace: $0\n

Remove all lines not containing 'word'

^((?!word).)*$/gms

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment