Skip to content

Instantly share code, notes, and snippets.

@mawaldne
Created January 29, 2014 21:46
Show Gist options
  • Save mawaldne/8697866 to your computer and use it in GitHub Desktop.
Save mawaldne/8697866 to your computer and use it in GitHub Desktop.
Non greedy regex
Finds:
routing_number\": \"01030800\"
account_number\": \"02010101\"
Grep with perl:
grep -Poh 'routing_number\\".*?\\".*?\\"' file.txt
grep -Poh 'account_number\\".*?\\".*?\\"' file.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment