Skip to content

Instantly share code, notes, and snippets.

@rmirabelli
Created August 11, 2022 19:52
Show Gist options
  • Save rmirabelli/6c0e24d3e92f290cb733fef638967aac to your computer and use it in GitHub Desktop.
Save rmirabelli/6c0e24d3e92f290cb733fef638967aac to your computer and use it in GitHub Desktop.
Sample of swift regex DSL
let regex3 = Regex {
"a"
Capture {
OneOrMore(.word)
}
" "
}
let match3 = baseString.firstMatch(of: regex3)
print(match3?.1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment