Why does my invoke code always return false?

Hi,

The input string seems 10 digits. However, the regex pattern requires 11 digits at least. So it returns false.

If you also need to match the string, can you try to replace {9} with {8,9} in the pattern, for example?

Regards,

1 Like