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

185
Views
How to match two or more words name in javascript regex?

I'm trying to verify that there are at least two words name, where a word is only alphabet for example:

// Should pass
Jean Acker 
Mary Kay Adams
Elizabeth Allen Alba Bailey
Blanche Baker Bowen Collinge Marie
// ...and so on more than two words

// Should Fail
Ryan
Filbert77
Mark 21
Franz.Dimaz

This is the regex I'm currently using just to verify letters and spaces

/^[aA-zZ\s]+$/

I have searched and tried one of them on this link but it didn't work link

Can anyone help me to verify name more than 1 word?

about 4 years ago · Santiago Trujillo
2 answers
Answer question

0

try this:

([a-zA-Z]{1,})+\s+([a-zA-Z]{1,})+[a-zA-Z\s]*

about 4 years ago · Santiago Trujillo Report

0

Demo: https://regex101.com/r/tt4H3Q/1

Pattern : [a-zA-Z]+(?: [a-zA-Z]+)+

[a-zA-Z] -> Match only alphabets

+ -> Match the pattern one or more times

about 4 years ago · Santiago Trujillo 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!