Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

how to remove vowels from a sttring using regex c#

string resultString = null;
try {
    resultString = Regex.Replace(subjectString, "(?<!^)[aeui](?!$)", "");
} catch (ArgumentException ex) {
    // Syntax error in the regular expression
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #remove #vowels #sttring #regex
ADD COMMENT
Topic
Name
1+9 =