Skip to content

Instantly share code, notes, and snippets.

@stevejay
Last active August 29, 2015 14:00
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 stevejay/52f2ef9983dcfb57bfc0 to your computer and use it in GitHub Desktop.
Save stevejay/52f2ef9983dcfb57bfc0 to your computer and use it in GitHub Desktop.
Regex question
var regex = new Regex("(ew?e)+");
var match = regex.Match("eweee");
var value = match.Groups[1].Value; // What is this value?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment