Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

ifsc code validation formik

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 :: substring 
Javascript :: import img react in another file 
Javascript :: replace componentwillmount with hooks 
Javascript :: js fetch get params 
Javascript :: debounce js 
Javascript :: Check object property exists or not in js 
Javascript :: vue cors 
Javascript :: angular directive output 
Javascript :: best and fastest encrypt and decrypt value in javascript 
Javascript :: sapui5 get fragment by id 
Javascript :: javascript get referrer 
Javascript :: async constructor javascript 
Javascript :: react scroll 
Javascript :: app use morgan 
Javascript :: nodejs import instead of require 
Javascript :: js if array is 2d 
Javascript :: spawn template playcanvas 
Javascript :: jest mock createobjecturl 
Javascript :: JavaScript Object Constructors 
Javascript :: regex for valid phone number 
Javascript :: capacitor.ionicframework.com to apk 
Javascript :: add two strings javascript 
Javascript :: jQuery hasClass() - check for more than one class 
Javascript :: resize function in addEventListener JS 
Javascript :: how can ic get the id of div jq 
Javascript :: get first 10 characters of string javascript 
Javascript :: array map arrow function 
Javascript :: capitalize a string javascript 
Javascript :: how to increment counter button click in javascript 
Javascript :: tolocalestring format dd-mm-yyyy 
ADD CONTENT
Topic
Content
Source link
Name
9+6 =