Created
August 14, 2018 14:28
-
-
Save oerp-odoo/6c75039c829d5fd0858263b2df775b0f to your computer and use it in GitHub Desktop.
regex - match text between other text or elements
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(?<=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