I have very little experience with regex, so thanks in advance.
I have a string like,
Doe Jane, Doe John. The Works of Dr. Suess. Harvard Press(1984).
I am using string.split(regex) to split the string into a String[] based on the regex I supply. I want to split it into authors, title, publication info. The problem is just using [.] breaks it up after Dr. too.
How can I write a regext to include '.' but exclude something like 'Dr.' or 'Mr.' ?
Thanks