Created
June 26, 2018 19:02
-
-
Save renatomattos2912/002b2214fb23e4ed01eaf3aca65e0a2e to your computer and use it in GitHub Desktop.
Regex
This file contains 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
// Get values inside brackets, ex: {{test}} | |
/{{[{]?(.*?)[}]?}}/g | |
// Get values started with @, ex: @test | |
/@[a-zA-Z]*/g |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment