Regular expression to match last item without delimiter
- by Steven
I have a string of names like this "J. Smith; B. Jones; O. Henry"
I can match all but the last name with
\w+.*?;
Is there a regular expression that will match all the names, including the last one?