Created
May 4, 2018 19:57
-
-
Save gte445e/c7838dceb422a5bbe36bfe1176dd9f18 to your computer and use it in GitHub Desktop.
Trim multiple spaces
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
RegexOptions options = RegexOptions.None; | |
Regex regex = new Regex(@"[ ]{ 2,}", options); | |
string input = " 1 2 3 4 5 "; | |
string result = regex.Replace(input, " "); | |
Console.WriteLine("<begin>" + result + "<end>"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment