I have a list looks like this
['Drexel University,\r\n Antoinette Westphal COMAD,\r\n Animation & Visual Effects,\r\n Undergraduate Program']
I want to remove the university name, which is "Drexel University", and the space like \r\n (include those white space after that) in front of other words. I guess regex would be a good idea. But I don't know how to exclude some words with regex.
Well, I already have a solution. But if anyone could provide a regex version, I'll be appreciate.