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

147
Views
Matching a specific string between foward slash or # using regex

I'm trying to make this regex:

([?=section\/en\/]*)([^\/#]*)

For these examples:

https://www.test.com/en/string-to-get#cid=4949
https://www.test.com/en/section/string-to-get/page&2#cid=4949
https://www.test.com/en/section/string-to-get#cid=4949

current regex

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

0

You need to use

(?<=section\/)([^\/#]*)

Or, just

section\/([^\/#]*)

and grab Group 1 value.

Here,

  • (?<=section\/) - a positive lookbehind that matches a location immediately preceded with section/ substring
  • ([^\/#]*) - Capturing group 1: zero or more chars other than / and #.

See the regex demo #1 and regex demo #2.

Depending on whether or not regex delimiters are required and if they are not /s you may use an unescaped /, (?<=section/)([^/#]*) and section/([^/#]*).

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!