I have a large string with brackets and commas and such. I want to strip all those characters but keep the spacing. How can I do this. As of now I am using
s
re.sub(r'([^\s\w]|_)+', '', origList)