Hi ,
I need a function to remove vowels from a string
For example if input is “yes” , I need the output to be “ys”
Thanks
Hi ,
I need a function to remove vowels from a string
For example if input is “yes” , I need the output to be “ys”
Thanks
Hi @Rishab2
Welcome to community
Check this expression
Have this in value stored to a variable
System.Text.RegularExpressions.Regex.Replace(“yes”,“[AEIOUaeiou]”,“”)
Thanks @nikhil.girish
Let me check this out
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.