Is there a way to separate parsed data into separate parts that can be formatted, and dealt with as separate fields in a record?
Ex:
cart field is a text datatype
includes info as such parsed two ways:
Product1 : Quantity : Price : Units ~ Product2 : Quantity : Price : Units // Product info separated by a ":", and products separated by "~"
I want to be able to use the data in the price section and format it as a decimal, and I want to be able to remove or ignore the units part.
Is this possible? If so, how?
Thanks.