Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

ifsc code validation regex

Yup.string()
      .required("IFSC Code Is Required")
      .test(
        "IFSC Code",
        "IFSC Code must be of length 11",
        (value) => value?.length === 11
      )
      .matches(
        /^[A-Za-z]{4}[a-zA-Z0-9]{7}$/,
        "First 4 characters must be alphabets and last 7 characters must be numbers"
      ),
Comment

PREVIOUS NEXT
Code Example
Javascript :: how to run commands in the command prompt using javascript 
Javascript :: get object with max value javascript 
Javascript :: jquery form data 
Javascript :: how to get last string in javascript 
Javascript :: how to get on click id in event 
Javascript :: javascript node has parent with class 
Javascript :: npm react copy to clipboard 
Javascript :: angular ngmodel checkbox 
Javascript :: jsonobject in variable 
Javascript :: javascript string to variable 
Javascript :: aos initial configuration vue 
Javascript :: stop a function javascript 
Javascript :: jquery .click function call 
Javascript :: how to capitalize first letter in javascript 
Javascript :: jquery form serialize object 
Javascript :: npx http server 
Javascript :: how to change background color though props 
Javascript :: javascript option yes/no popup 
Javascript :: Javascript removing duplicates in array 
Javascript :: javascript object destructuring 
Javascript :: javascript randint 
Javascript :: reverse every word in a string javascript 
Javascript :: node js return ID in postgres insert 
Javascript :: express server 
Javascript :: get window width 
Javascript :: moment js between two dates 
Javascript :: string uppercase 
Javascript :: get element type javascript 
Javascript :: CREATE A BUTTON THAT INCREMENTS A COUNTER WHEN CLICKED 
Javascript :: remove comma from string jquery 
ADD CONTENT
Topic
Content
Source link
Name
9+9 =