Skip to content

Instantly share code, notes, and snippets.

@oerp-odoo
Created August 14, 2018 14:28
Show Gist options
  • Save oerp-odoo/6c75039c829d5fd0858263b2df775b0f to your computer and use it in GitHub Desktop.
Save oerp-odoo/6c75039c829d5fd0858263b2df775b0f to your computer and use it in GitHub Desktop.
regex - match text between other text or elements
(?<=name="name">)(.*)(?=<)
Would match content inside tags like (would match "some content"):
<field name="name">some content</field>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment