Combine from switch nodes

I want to select a number 10000 which in the middle of 00811000013600012. I already use split which I have split a single number and know I have a problem to combine the number to get my payload 10000. Please help me.

flows.json (6.2 KB)

If you always want the 5th to 10th characters you could use a function node and substring().
Output as a string:

msg.payload = msg.payload.substring(4,9)
return msg;

Or as a number:

msg.payload = Number(msg.payload.substring(4,9))
return msg;
1 Like

To do it with a split node use between in the switch node and check recreate message sequences
Then use a join node set to automatic

e.g.

[{"id":"b154902499dfbd00","type":"inject","z":"d1395164b4eec73e","name":"00811000013600012","props":[{"p":"payload"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"00811000013600012","payloadType":"str","x":220,"y":5760,"wires":[["3bf08148d642637a"]]},{"id":"3bf08148d642637a","type":"split","z":"d1395164b4eec73e","name":"","splt":"1","spltType":"len","arraySplt":1,"arraySpltType":"len","stream":false,"addname":"","property":"payload","x":430,"y":5760,"wires":[["506ab0bddcbd9146"]]},{"id":"506ab0bddcbd9146","type":"switch","z":"d1395164b4eec73e","name":"","property":"parts.index","propertyType":"msg","rules":[{"t":"btwn","v":"4","vt":"num","v2":"8","v2t":"num"}],"checkall":"true","repair":true,"outputs":1,"x":570,"y":5760,"wires":[["6f5596f6b2d2cda5"]]},{"id":"6f5596f6b2d2cda5","type":"join","z":"d1395164b4eec73e","name":"","mode":"auto","build":"object","property":"payload","propertyType":"msg","key":"topic","joiner":"\\n","joinerType":"str","useparts":false,"accumulate":"false","timeout":"","count":"","reduceRight":false,"x":690,"y":5760,"wires":[["5557b67f0d0a1277"]]},{"id":"5557b67f0d0a1277","type":"debug","z":"d1395164b4eec73e","name":"debug 1","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":820,"y":5760,"wires":[]}]
1 Like

okay thankyou so much

okay thankyou