I have a Regex that removes characters that are not letters or space, for a Python application. Ex:
var = re.sub('[^a-zA-Z \\]', '', "abc Abc aBC cde123 def-ghi $?!123")
Returning:
abc Abc aBC cde defghi
I also need to return everythin...
asked by
05.11.2018 / 21:11