Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Extracting `<key>:<value>` pairs with regex

there is a textarea and want to extract with key:value (something like below image)

enter image description here

I have a regex but not working as expected

/([^\s][a-zA-Z!]+:(\s)?"?([a-z0-9\s.]+)"?[^ $])/gi

if the user enters the below string at that time regex break the group key:value.

is:"browser" browser: "chrome 11.11 V" node: error type:"Error"

expected group:

is:"browser"
browser: "chrome 11.11 V"
node: error 
type:"Error"
like image 537
Archin Modi Avatar asked Feb 01 '26 10:02

Archin Modi


1 Answers

You can use

const text = 'is:"browser" browser: "chrome 11.11 V" node: error type:"Error"';
const re = /(\w+):\s*(?:"([^"]*)"|(\S+))/g;
let dict = {}, m;
while(m = re.exec(text)) {
  dict[m[1]]=(m[3] || m[2]);
}
console.log(dict);

// Or just get all matches:
console.log(text.match(re))

See the regex demo. Details:

  • (\w+) - Group 1: one or more word chars
  • : - a colon
  • \s* - zero or more whitespaces
  • (?:"([^"]*)"|(\S+)) - either of
    • "([^"]*)" - ", 0+ non-commas (captured in Group 2), "
    • | - or
    • (\S+) - Group 3: one or more non-whitespaces chars.
like image 120
Wiktor Stribiżew Avatar answered Feb 04 '26 00:02

Wiktor Stribiżew