DEV Community

CP
CP

Posted on • Updated on

Yup Schema Commonly Used Examples

Here are two commonly used schema validations using Yup:

  1. Phone number validation with Regex
  2. How to compare two fields in Yup
import * as yup from "yup";

const phoneRegex = /^\(?([0-9]{3})\)?[-. ]?([0-9]{3})[-. ]?([0-9]{4})$/;
const schema = yup.object().shape({
  phone: yup.string().matches(phoneRegex, "Invalid phone."),
  password: yup.string().required("Password is required"),
  confirmPassword: yup
    .string()
    .oneOf([yup.ref("password")], "Mismatched passwords")
    .required("Please confirm your password")
});

export default schema;

Enter fullscreen mode Exit fullscreen mode

Oldest comments (2)

Collapse
 
tonephp profile image
tonephp

Thanks a lot!

Collapse
 
imshivanshpatel profile image
SHIVANSH PATEL

thanks man