Input
Example Usage
Use named groups in your regex like (?<name>pattern)
to create JSON properties.
For example: (?<first>\w+)\s+(?<last>\w+)
will create { "first": "...", "last": "..." }
Output
{ "transformedData": [] }
Convert text to structured JSON using regular expressions with named groups
Use named groups in your regex like (?<name>pattern)
to create JSON properties.
For example: (?<first>\w+)\s+(?<last>\w+)
will create { "first": "...", "last": "..." }