Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

212
Views
Why isn't this simple alphanumeric regex matching with JS but it is matching on regex101?

I'm trying to test the string UNCLTEST614NESZZ.

Using the regex /^[a-z0-9]+$/i.

Below is the code being used.

let regex = new RegExp("/^[a-z0-9]+$/i");
let match = regex.test(serial);

Yet match ends up being false, despite the same regex and test string in regex101 producing a positive result

https://regex101.com/r/MrpcB5/1

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Based on the documentation: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions

You can either use

let regex = new RegExp("^[a-z0-9]+$", "i");

or

let regex = /^[a-z0-9]+$/i;
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!