Currently, I am using jQuery Validate to validate the form.
In order to validate the phone number field, I have implemented the following code:
The phone number should be written in the format 01x-xxxxxxxx
var phonereg = /^[0-9]{3}\-[0-9]{7}$/;
However, it is also necessary to check that the phone number starts with 01.
Could someone provide guidance on how to do this?