Skip to content

Instantly share code, notes, and snippets.

@syuhei176
Last active January 11, 2016 15:30
Show Gist options
  • Save syuhei176/c85eaf29b5fb5f13c68f to your computer and use it in GitHub Desktop.
Save syuhei176/c85eaf29b5fb5f13c68f to your computer and use it in GitHub Desktop.
regular expression

Erlang re module

>{ok, R} = re:compile("a+b*a+").
>re:run("abba", R).
{match,[{0,4}]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment