Hi everyone.
I'm driving myself crazy trying to format a text string into the required format!
My workflow is doing a load of stuff but the crux of the issue is this ... I currently have a string that looks like this;
name: site test GT, address: test address, city: Newcastle, state: VIC, postcode: 2000, siteContact: test, siteEmail: test@test.com, portfolio: Suburban 2, propertyId: 123456, fmEmail: test@fm.com, fmMobile: 01234567, pmEmail: test@pm.com, pmMobile: 987465, propertyType: Leased, department: CDPP, oneViewClientPropertyID: 12345678
I need it to look like this:
{"name": "site test GT", "address": "test address", "city": "Newcastle", "state": "VIC", "postcode": "2000", "siteContact": "test", "siteEmail": "test@test.com", "portfolio": "Suburban 2", "propertyId": "123456", "fmEmail": "test@fm.com", "fmMobile": "01234567", "pmEmail": "test@pm.com", "pmMobile": "987465", "propertyType": "Leased", "department": "CDPP", "oneViewClientPropertyID": "12345678"}
I'm hoping somebody can help with the additions of the " and {}
Many thanks in advance.