Answers for "regex replace special characters python"

C#
2

regex replace all special characters

Regex.Replace(your String, @"[^0-9a-zA-Z]+", "")
Posted by: Guest on March-25-2020
0

how to replace special characters in a string python

removeSpecialChars = z.translate ({ord(c): " " for c in "!@#$%^&*()[]{};:,./<>?|`~-=_+"})
Posted by: Guest on May-02-2021

Code answers related to "regex replace special characters python"

C# Answers by Framework

Browse Popular Code Answers by Language