Skip to content
Advertisement

How can I convert a string to dictionary in a manner where I have to extract key and value from same string

I need to convert string to dictionary in a manner for example

JavaScript

Output what I require is

JavaScript

Note: str1 can have many more such c, d, e with range.

Advertisement

Answer

You can do it with a regex:

JavaScript

Explanation of the regex:

  • match combination of alphanumeric characters and dashes [w-]+
  • followed by a space, a colon and a space _:_
  • followed by a combination of alphanumeric characters and dot [w.]+

The groups are catching your relevant infos.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement