Create two items from one MQTT channel with data,data

I’m rebuilding after being away for a while. I have an MQTT channel that has data like 100,85 and I need to separate that into two different items. What is the best way to handle this? I don’t remember how I handled this before.

Figured it out. Put this in Thing to Item Transformation.

| input.split(",").get(0)
OR
| input.split(",").get(1)