Hi.
Please can someone advise how I may check the length of a string property using java.util.regex.Matcher.
Many thanks,
PDubUK
Printable View
Hi.
Please can someone advise how I may check the length of a string property using java.util.regex.Matcher.
Many thanks,
PDubUK
Found the solution,
^.{<EXACT LENGTH>}$
^.{<MIN LENGTH, MAX LENGTH>}$
will resolve this issue.
Many thanks.