I have something like this in my code:
cust.main.city
I need to find all such occurrences where it has atleast 2 dots I mean references.
So i tried this
[].+.[].+
but it also gave me :
cust.Res;
I only want those lines which has atleast 2 dots (.
) in it so I can check further.
Request you to please guide me.