“validasi nomor telepon di yup” Kode Jawaban

validasi nomor telepon di yup

Yup.object({
  phone: Yup.string()
      .required("This field is Required")
      .matches(
        /^((\\+[1-9]{1,4}[ \\-]*)|(\\([0-9]{2,3}\\)[ \\-]*)|([0-9]{2,4})[ \\-]*)*?[0-9]{3,4}?[ \\-]*[0-9]{3,4}?$/,
        "Phone number is not valid"
      )
})            
ashirbad-panigrahi

Nomor telepon yup

const phoneRegExp = /^((\\+[1-9]{1,4}[ \\-]*)|(\\([0-9]{2,3}\\)[ \\-]*)|([0-9]{2,4})[ \\-]*)*?[0-9]{3,4}?[ \\-]*[0-9]{3,4}?$/

phoneNumber: Yup.string().matches(phoneRegExp, 'Phone number is not valid')
Nutty Newt

Jawaban yang mirip dengan “validasi nomor telepon di yup”

Pertanyaan yang mirip dengan “validasi nomor telepon di yup”

Lebih banyak jawaban terkait untuk “validasi nomor telepon di yup” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya