How to remove all non-alphanumeric characters from a string in Python

3 Answers

0 votes
import re
 
s = 'Python, #Java@ !C ^&CPP 100 (*)PHP.'
 
pattern = r'[^A-Za-z0-9]+'
 
s = re.sub(pattern, '', s)
 
print(s)
 
 
 
 
'''
run:
 
PythonJavaCCPP100PHP

'''

 



answered Nov 4, 2021 by avibootz
edited Nov 11, 2022 by avibootz
0 votes
s = 'Python, #Java@ !C ^&CPP 100 (*)PHP.'
 
s = ''.join(ch for ch in s if ch.isalnum())
 
print(s)
 
 
 
 
'''
run:
 
PythonJavaCCPP100PHP

'''

 



answered Nov 4, 2021 by avibootz
edited Nov 11, 2022 by avibootz
0 votes
s = 'Python, #Java@ !C ^&CPP 100 (*)PHP.'
 
s = ''.join(filter(str.isalnum, s))
 
print(s)
 
 
 
 
'''
run:
 
PythonJavaCCPP100PHP

'''

 



answered Nov 4, 2021 by avibootz
edited Nov 11, 2022 by avibootz

Related questions

1 answer 117 views
1 answer 120 views
1 answer 111 views
1 answer 130 views
...