A valid phone number contains:
I\'m trying to use regular expre
Something like this could work:
^+\d{0,9}
But I would suggest playing around with a regex tester to learn more about how regular expressions work. I still like to use them heavily myself, as I don't write regular expressions often. Here is one example but there are many more out there.
https://regex101.com/