I want to validate phone number with javascript, so far i have regex that looks like this:
/^[0-9\+]{8,13}$/
But it is not what i finally wanna get.
I need get phone number format that is default for my country "Poland". For example few phones formats i need check with regex if user correctly passed them: 321123321
, 123-321-123
, 123 321 123
, 123211212
, 12-321-12-12
, 12 321 12 12
.
Sorry if my question is silly but i have no idea how to understand this regex.