Skip to content

Instantly share code, notes, and snippets.

@peschwa
Created November 12, 2015 14:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peschwa/02e594f87303f2ddd9c2 to your computer and use it in GitHub Desktop.
Save peschwa/02e594f87303f2ddd9c2 to your computer and use it in GitHub Desktop.
/ [ # non capturing group 1
$<a>=[ # non capturing group 2, saved into named capture a
'{' # match a {
~ # with stuff in between (or some kind of "until", maybe)
'}' # finish with a }
.+? # btw, the stuff in between is anything, but as little as possible
] # non capt group 2 done
]+ # non capt group 1 done, but get multiple of those
% # separated by
<-[{]>+ # any number of not-{
/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment