I need a regular expression to check a field is either empty or is exactly 13 digits?
Regards, Francis P.
|
I need a regular expression to check a field is either empty or is exactly 13 digits? Regards, Francis P. |
||||
|
|
|
Try this (see also on rubular.com):
Explanation:
ReferencesOn the definition of emptyThe above pattern matches a string of 13 digits, or an empty string, i.e. the string whose length is zero. If by "empty" you mean "blank", i.e. possibly containing nothing but whitespace characters, then you can use So perhaps something like this (see also on rubular.com):
ReferencesRelated question |
||||