I am trying to make a simple phone number validation and I struggle with regex validation for that. I would like to allow users input the following:
- Any digit
- -
- +
- (
- )
space
/white space
At the moment I have something like this: /[0-9-+()\s]*/im
, but it doesn't seem to work. Can someone help me out? I am not targeting any specific country, therefore I don't want to follow any strict formats.