Answered step by step
Verified Expert Solution
Question
1 Approved Answer
I have to make a Regex reference that start with a group of three letters, followed by a hyphen and then a five-digit number. to
I have to make a Regex reference that start with a group of three letters, followed by a hyphen and then a five-digit number.
to make a booking reference in the code I posted the code below
I only need the pattern fix
if (inputElement.id == "reference") { pattern = /^[a-zA-Z]d{3}[-\0-9]{5}$/;
this pattern is and example but is wrong I need to fix it so can accept the input below }
have to be able to submit in the app a input like ABC-12345
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started