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 everything in lowercase:
abc abc abc cde defghi