Answers for "get all matches regex javascript"

0

get all matches regex javascript

var re = /\s*([^[:]+):\"([^"]+)"/g;
var s = '[description:"aoeu" uuid:"123sth"]';
var m;

do {
    m = re.exec(s);
    if (m) {
        console.log(m[1], m[2]);
    }
} while (m);
Posted by: Guest on June-19-2021
0

javascript regex all matches match

let array = [...str.matchAll(regexp)];

array[0];
// ['test1', 'e', 'st1', '1', index: 0, input: 'test1test2', length: 4]
array[1];
// ['test2', 'e', 'st2', '2', index: 5, input: 'test1test2', length: 4]
Posted by: Guest on July-22-2021

Code answers related to "get all matches regex javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language