Hi Team,
I need to remove specified special characters from string.
~ ? ā " # | & / \ % * < > : these should be removed and I need to keep the other special characters.
Can anyone help me to resolve this thanks.
Hi Team,
I need to remove specified special characters from string.
~ ? ā " # | & / \ % * < > : these should be removed and I need to keep the other special characters.
Can anyone help me to resolve this thanks.
@nagini.pragna
Replace with space through regex
*|?|'|"|#|&|/|\|<|>|:
->System.Text.RegularExpressions.Regex.Replace(yourString,ā*|?|'|ā|#|&|/||<|>|:", āā)
Hi @nagini.pragna ,
Use the below expression:
system.text.RegularExpressions.Regex.Replace(YourString,ā[~ ? ā āā # | & / \ % * < > :]ā,āā)
@nagini.pragna use this
System.text.regularExpressions.Regex.Replace(yourString, "(["+Chr(34)+"~\?\'#|&\\\/%\*<>:])", "")
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.