Hi,
HELP - I need a regex expression that will test for...
11 digits then a
"/" then either
8 digits
OR 4 alpha/numeric followed by 4 numeric...
egs
99039002885/AAAA0001
or
99039002885/00000001
I've got this but it doesnt work
= "^\d{11}\/\d{8}$"
Thanks
HELP - I need a regex expression that will test for...
11 digits then a
"/" then either
8 digits
OR 4 alpha/numeric followed by 4 numeric...
egs
99039002885/AAAA0001
or
99039002885/00000001
I've got this but it doesnt work

= "^\d{11}\/\d{8}$"
Thanks