Last active
August 29, 2015 14:00
-
-
Save stevejay/52f2ef9983dcfb57bfc0 to your computer and use it in GitHub Desktop.
Regex question
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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