I want to ask some question Regular Expression in Python.
In the variable nihao, there is a string like the following:
Committee Members: Prof.A (Supervisor)
I want to extract Prof.A(only the Prof.A, eliminate all the \t or other white spaces) between
Committee Members:
and
(Supervisor)in python language.
How should I write the regex?
Thanks.