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

57
Views
Grab substring after and before two specific characters in javascript

i have a url search key like that: ?retailerKey=A and i want to grab the retailerKey substring. All examples that i saw are having as example how to take before the char with the indexOf example. How can i implement this to have this substring from the string ?retailerKey=A

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

0

You could split() the string on any ? or = and take the middle item ([1]) from the outcome array.

const data = "?retailerKey=A";
const result = data.split(/[\?=]/)[1];

console.log(result);

If you have multiple params, creating an object fromEntries() would be interesting.

const data = "?retailerKey=A?otherKey=B";

const keyVals = data.split(/[\?=]/).filter(x => x); // keys and values
const result = Object.fromEntries(keyVals.reduce((acc, val, i) => {
  // create entries
  const chunkI = Math.floor(i / 2);
  if (!acc[chunkI]) acc[chunkI] = [];
  acc[chunkI].push(val);
  return acc;
}, []));

console.log(result);

about 4 years ago · Juan Pablo Isaza Report

0

Using library could be a better choice but to do it from scratch : I suggest to use split with a regular expression.

// split for char equals to ? or & or =;
const url = '/toto?titi=1&tata=2';
const args = url.split(/[\?\&\=]/);
// shift the first element of the list since it the base url before "?"
args.shift();

// detect malformed url
if (args.length % 2) {
    console.error('malformed url', args);
}

const dictArgs = {};

for (let i = 0; i < args.length /2; i ++) {
     const key = args[2*i];
     const val = args[2*i+1];
     dictArgs[key] = val;
}

console.log(dictArgs);
    
about 4 years ago · Juan Pablo Isaza Report

0

use regex expression. Following will return the value between character ? and =

var result =  "?retailerKey=A".match(/\?(.*)\=/).pop();
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!