How to replace all those special characters with white spaces in python ?
I have a list of names of a company . . .
Ex:-[myfiles.txt]
MY company.INC
Old Wine pvt
master-minds ltd
“apex-labs ltd”
“India-New corp”
Indo-American pvt/ltd
Here, as per the above example . . . I need all the special characters[-,”,/,.] in the file myfiles.txt must be replaced with a single white space and saved into another text file myfiles1.txt.
Can anyone please help me out?
Assuming you mean to change everything non-alphanumeric, you can do this on the command line:
Or in Python with the
remodule: