Split incoming message

Hello,

I have a message with this structure, I receive this message every 10 seconds with new values (values are random, everytime I receive four values in the same order). I can not change the way the information is delivered from the source.

222.10;33.25;4.78;50.23

It contains four values, separated with a semi colon. I want to separate the message into four messages, and send each value to and IDX in Domoticz. What is the easiest way to do this?

When I use the split node, I split the message with the split function (Split using: ) into four messages, but I do not have any message property to filter/sort these four messages. Is using a function the only option?

Thanks

maybe the csv node would suit better as you can use a ; as the separator and assign them property names using the template. (but they would still then be in one message)

Thanks!, did not use that one before