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)
Asked
Active
Viewed 41 times
-2
-
Try `\.\s*\K\p{Ll}\p{L}*` (PCRE), or `(?<=\.\s*)\p{Ll}\p{L}*` for .NET / PyPi regex Python module. – Wiktor Stribiżew Mar 01 '18 at 11:30
-
Possible duplicate of [Learning Regular Expressions](https://stackoverflow.com/questions/4736/learning-regular-expressions) – Biffen Mar 01 '18 at 11:30