How do we collect telephone numbers which start with a leading zero?

Hi @ife,

I am counting 10 digits after 0 in your screenshot, if that’s the case you want to use can you try this code:

regex(., ‘^(0)[0-9]{10}$’)

Let’s see if that works.

1 Like

Perfect! Worked perfectly. Thank you @hakan_cetinkaya

2 Likes