Hi guys ,
I have a number format like nn.nn.nn and nn.nn.
I want to write a regex t check either one of them exist or not.
I wrote this
^(\d\d).(\d\d)$
but it only applies to nn.nn. Since i'm not ood in regex. i couldnt think a way to check both formats with in the same reg ex.
Hope you guys can help me.
thanks