|
Hi all
I want a function which checks teh repeated occurance(three times continously) of any alphabetic character
for example
occurance of aaa in soaaanam ...
occurance of bbb in sobbbm
please help
Regards
Dawn George
|
|
|
Try this
myRe=\b([a-z][a-z][a-z]) \1\b;
|
|
|
|
|
|
|
|