Hello.
I have attached sample data that I need to parse. Column B ParseField is the field that needs parsing. The data before looks like this:
| Request TypeConfig |
Region: North America ConfigType: Windows 10 (WIN10) Business Case: Need Upgrade Mac Address: 1234567 Quantity: 1 Approver : Jdoe7 Approver Full Name: John Doe PCSpecs: 18 GB Memory |
Once parsed the data should look like this:
| Region | Config Type | Business Case | MAC Address | Quantity | ApproverID | Approver Full Name | PCSpecs |
| North America | Windows 10 (WIN10) | Need Upgrade | 1234567 | 1 | Jdoe7 | John Doe | 18 GB memory |
I have tried the Regex tool to make sense of this but I am having trouble. Can anyone offer any assistance? Thank you.