I have a CSV string with multiple rows, 1st row is header and from 2nd row onwards the actual data. The value is available on a property of type text. Need to convert this into a page list, for the below example there should be 3 page list created with properties name,age,phone_no &contact_group. Let me know if anyone have implemented this, Thanks in advance.
“name”,“age”,“phone_no”,“contact_group”
“jon”,“22”,“78964784948”,“Default”
“snow”,“23”,“78964784949”,“Default”
“jeff”,“24”,“78964784949”,“Default”
pxPageListFromStringCSV will not work as it will covert each value before , to a seperate pagelist
loop thru the list, skip the 1st iteration and apply another parse delimited rule to properly parse each line (each element in the list created in the previous step)