I have a file of strings like:
"Row 1: Location=1922&JobType=11&JobName=3719&SkillLevel:isnull=true&JobStatus=0"
"Row 2: OffenderId=1447983&Location=0&OrderBy= "
"Row 3: User=tnu11607&Agency=767&ReportYear=2015&ReportMonth=2"
There are multiple patterns depending on which of 200+ reports were run, but the parameters can be different for each report.
I'd like to parse this out into something like:
ParamLocation ParamOffender ParamOrderBy ParamUser ...
1922 --- --- --- ...
--- 1447983 NULL --- ...
--- --- --- tnu11607 ...
(Hard to get the spacing to show adequately)
Etcetera.
I'm not even sure quite how to begin. Any Suggestions would be greatly appreciated. I'll be looking at this over the weekend.