-2

need regex that will higlight small case word after period ( example hello. there) it should highlight there( as it doesn't contain first letter cap).. this regex highlight all words "[^.]+$ (irrespective of cap and small)

1 Answers1

0

If you just want to highlight the lowercase word, then try this:

(?<=\w\.\s*)([a-z]+)

Demo

Tim Biegeleisen
  • 502,043
  • 27
  • 286
  • 360