• Jobs
  • About Us
  • professionals
    • Home
    • Jobs
    • Courses and challenges
  • business
    • Home
    • Post vacancy
    • Our process
    • Pricing
    • Assessments
    • Payroll
    • Blog
    • Sales
    • Salary Calculator

0

187
Views
Regex to get 2 specific characters between other 2 specific characters

I have a string:

[](first-(second))

I would like to remove ( and ) between [](... and last ...)

With that being said, I'm currently using (?<=\[\]\()(.*?)(?=\))

I assume (.*?) needs to be replaced with some sort of expression that will find ( and ) in between.

Something similar to string.replace(/(?<=\[\]\()(.*?)(?=\))/g, '')

And the string should look like [](first-second)

almost 3 years ago · Juan Pablo Isaza
3 answers
Answer question

0

As you already use a lookbehind in the pattern with JavaScript, you could use an infinite quantifier in the lookbehind, match the 2 parenthesis that you don't want to keep and capture in group 1 what you want to keep.

In the replacement use group 1 using $1

(?<=\[\]\([^()]*)\(([^()]*\))\)

The pattern matches:

  • (?<= Positive lookbehind, assert what is to the left is:
    • \[] Match []
    • \([^()]* Match ( and 0+ times any char except ( and )
  • ) Close lookbehind
  • \( Match (
  • ([^()]*\)) Capture group 1, match 0+ times any char except ( and )
  • \) Match )

Regex demo

const s = "[](first-(second))"
const regex = /(?<=\[]\([^()]*)\(([^()]*\))\)/;
console.log(s.replace(regex, "$1"))

Or using 2 capture groups instead of a lookbehind:

(\[]\([^()]*)\(([^()]*\))\)

Regex demo

const s = "[](first-(second))"
const regex = /(\[]\([^()]*)\(([^()]*\))\)/;
console.log(s.replace(regex, "$1$2"))

almost 3 years ago · Juan Pablo Isaza Report

0

If you don't need a stylish code, why not to go the easy way? Extract the substring without external brackets, replace & concat. the removed chars

s = '[](first-(second))'

mySubstring = s.substring(3, s.length -2);  // 'first-(second)'
//your replacement func.
result = '[]('+mySubstring+')';             //'[](first-second)'
almost 3 years ago · Juan Pablo Isaza Report

0

Here is an example (not using lookaheads). It should steer you in the correct direction.

Using 2 capture groups, and some non-greedy sets, you can assemble your target string.

It assumes no additional nested parenthesis or brackets, although you can modify to your needs to only include alphanumeric characters in the character sets.

const d = '[](foo-(bar)) [](foo2-(bar2))'
const rx = /(\[\]\([^-\(\)\[\]]*?-)\(([^\)]*?)\)\)/g

const m = rx.exec(d)
console.log(m)

const fixed = d.replace(rx, '$1$2)')
console.log(fixed)

almost 3 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 Our process Sales
Legal
Terms and conditions Privacy policy
© 2025 PeakU Inc. All Rights Reserved.

Andres GPT

Recommend me some offers
I have an error