main.cs131 chars4 lines
Explanation:
Regex.Replace()
method to replace any vowels (lowercase or uppercase) with an empty string.Regex.Replace()
is the input string that we want to operate on.[aeiouAEIOU]
to match any vowel (lowercase or uppercase).gistlibby LogSnag