I’m trying to parse a text file into sentences ending in periods, but names like Mr. Hopkins are throwing false alarms on matching for periods.
What regex identifies “.” but not “Mr.”
For bonus, I’m also using ! to find end of sentences, so my current Regex is /(!/./ and I’d love an answer that incorporates my !’s too.
Use negative look behind.
This will match a period only if it does not come after
Mr,Mrs,DrorMs