I am new to RegEx and I want to use regular expression to find words between dots.
For example, the text is something like:
abc.efg.hij.klm.opq.
I tried with below RegEx:
\.(\w+)\.
It only show me 2 matches:
.efg.
.klm.
Why am I getting this result?
Here is the link to the RegEx: https://regex101.com/r/pqMN8t/1/