CHHUM Sina
CHHUM Sina

Reputation: 421

HTML5 pattern for phone number formatting

<input type="text" pattern=" ">

How to make pattern to work with below formats?

note:

sample:

  1. 0xx xxx xxx
  2. 0xx xxx xxxx

Many thanks :)

Upvotes: 0

Views: 90

Answers (1)

CHHUM Sina
CHHUM Sina

Reputation: 421

pattern="0[0-9]{2} [0-9]{3} [0-9]{3,4}"

Upvotes: 1

Related Questions