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

168
Views
Regex to extract LHS and RHS of a char

I am looking for a Regex for the below problem -

String - "32 - This-may-contain - hypen-as-well"

Divide from "-"

Result -> "32 ", " This-may-contain - hypen-as-well"

I was doing "32 - This-may-contain-hypen-as-well".split("-"); but the RHS can also contain hypens and I need to do more operations to join back the rhs with hypen.

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

0

use the regex as below in a match

const input = "32 - This-may-contain - hypen-as-well";
const result =input.match(/(.*?) - (.*)/).slice(1);
console.log(result);

but without regex it still can be done

const input = "32 - This-may-contain - hypen-as-well";
const [LHS, ...RHS] = input.split(' - ');
const result = [LHS, RHS.join(' - ')];
console.log(result);

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!