Skip to content

Instantly share code, notes, and snippets.

@DmitrySoshnikov
Last active March 30, 2017 05:39
Show Gist options
  • Save DmitrySoshnikov/d1dd4f378ca02a34c2e335c378a54378 to your computer and use it in GitHub Desktop.
Save DmitrySoshnikov/d1dd4f378ca02a34c2e335c378a54378 to your computer and use it in GitHub Desktop.
regexp-tree-example1.json
{
"type": "RegExp",
"body": {
"type": "Repetition",
"expression": {
"type": "CharacterClass",
"expressions": [
{
"type": "ClassRange",
"from": {
"type": "Char",
"value": "a",
"kind": "simple"
},
"to": {
"type": "Char",
"value": "z",
"kind": "simple"
}
}
]
},
"quantifier": {
"type": "+",
"greedy": false
}
},
"flags": "g"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment