Skip to content

Instantly share code, notes, and snippets.

@rluvaton
Created May 11, 2022 07:24
Show Gist options
  • Save rluvaton/894ba469cd9a46afc3cc221d9b05b112 to your computer and use it in GitHub Desktop.
Save rluvaton/894ba469cd9a46afc3cc221d9b05b112 to your computer and use it in GitHub Desktop.
Regex Snippets

Regex Snippets

Files

Match only one lines that have 1 node_modules folder in their string

^(?:(?!node_modules).)*(?:node_modules)(\/|$)(?!.*(?:node_modules))

Usage:

find . | ag '^(?:(?!node_modules).)*(?:node_modules)(\/|$)(?!.*(?:node_modules))'

Match only lines that end with node_modules and don't have it already before

^(?:(?!node_modules).)*node_modules\/?$

Usage:

find . | ag '^(?:(?!node_modules).)*node_modules\/?$'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment