Hi, I need a clarification on use of split node.
I have an incoming message like this one:
*#*1##*#*1##*5*1*##*5*5*##*5*7*##*5*9*##*5*18*#1##*5*18*#2##*5*18*#3##*5*18*#4##*5*11*#5##*5*11*#6##*5*11*#7##*5*11*#8##
and I need to split it into several frames using "##" as a separator. I thought to use a split node splitting on "##", then (at output) add again the "##" to fill the frames back:
msg.payload = msg.payload.concat("##");
In such a way I should have a sequence of frames, from the original single message. Is it correct? Do I need a join
node (and why?)