Answers for "python remove all non alphanumeric"

3

python remove non letters from string

def nospecial(text):
	import re
	text = re.sub("[^a-zA-Z0-9]+", "",text)
	return text
Posted by: Guest on May-31-2020
0

How do I remove all non alphanumeric characters from a string?

Regex rgx = new Regex("[^a-zA-Z0-9 -]");
str = rgx.Replace(str, "");
Posted by: Guest on March-25-2020
2

python string strip non alphanumeric

Regular expressions to the rescue:

import re
stripped_string = re.sub(r'W+', '', your_string)
Posted by: Guest on February-05-2020

Code answers related to "python remove all non alphanumeric"

Python Answers by Framework

Browse Popular Code Answers by Language