How to find all double quote substrings in a string with JavaScript

1 Answer

0 votes
// Define the string
let str = 'This is a string with "double-quoted substring1", and "double-quoted substring2" inside.';

// Regular expression pattern to match substrings within double quotes
let pattern = /"([^"]*)"/g;

// Find all matches
let matches = [...str.matchAll(pattern)].map(match => match[1]);

console.log(matches);

  
  
/*
run:
  
[ 'double-quoted substring1', 'double-quoted substring2' ]
  
*/

 



answered May 13 by avibootz
edited May 13 by avibootz
...