hi all
how can I know which group dismatch in holl Pattern
this pattern searches for 3 words or more, that consist of 2 or more letters
Now in real example , suppose that the user enters " Bill S "
I want to dispaly that "Each word must consist of 2 or more letters "
I can only do that if I know how I can get the group failure .
that for reading.
how can I know which group dismatch in holl Pattern
this pattern searches for 3 words or more, that consist of 2 or more letters
Code:
"(\b([A-Za-z]){2,}\s?){3,}\b"
Now in real example , suppose that the user enters " Bill S "
I want to dispaly that "Each word must consist of 2 or more letters "
I can only do that if I know how I can get the group failure .
that for reading.