I have a pattern like:
\[[0-9],([0-9]|1[0-4]),[0-9],([0-9]|1[0-4])]
that perfectly matches the strings that are in form of
e.g.
[1,1,1,2]
[5,6,5,7]
I want the string like
[1,1,1,2]kwfkbkkbdobug
be recognized as a false or invalid and not compatible with the pattern, while by using current pattern the string that I mentioned will be recognized as a valid string because it has a [1,1,1,2] string inside regardless of existence of kwfkbkkbdobug.
What would be the best pattern in order to satisfy the need?