As you can see one of the strengths of Node-RED is that you have several ways to achieve what you want. An alternative to split the values is by using REGEX inside a change node.
Flow:
[{"id":"613d1be1.756e94","type":"tab","label":"Flow 5","disabled":false,"info":""},{"id":"688fcd43.63b134","type":"inject","z":"613d1be1.756e94","name":"Your serial node","topic":"","payload":"Data: <=>fijierfji10440#EVENTSBOARD#252#STR:new_sensor_frame#BAT:93#TC:26.45#HUM:35.0#PRES:91231.56#","payloadType":"str","repeat":"","crontab":"","once":false,"onceDelay":0.1,"x":260,"y":180,"wires":[["c3727b79.b17958"]]},{"id":"c3727b79.b17958","type":"split","z":"613d1be1.756e94","name":"","splt":"#","spltType":"str","arraySplt":1,"arraySpltType":"len","stream":false,"addname":"","x":410,"y":180,"wires":[["5b228f02.4fdd9"]]},{"id":"5b228f02.4fdd9","type":"switch","z":"613d1be1.756e94","name":"","property":"payload","propertyType":"msg","rules":[{"t":"cont","v":"BAT","vt":"str"},{"t":"cont","v":"TC","vt":"str"},{"t":"cont","v":"HUM","vt":"str"},{"t":"cont","v":"PRES","vt":"str"}],"checkall":"true","repair":false,"outputs":4,"x":550,"y":240,"wires":[["c1302d98.3895f"],["7c03fd8c.357bb4"],["7775b6c6.146cd8"],["7b773e27.d85c9"]]},{"id":"542e0391.8eb54c","type":"debug","z":"613d1be1.756e94","name":"","active":true,"tosidebar":true,"console":false,"tostatus":true,"complete":"bat","targetType":"msg","x":920,"y":160,"wires":[]},{"id":"c1302d98.3895f","type":"change","z":"613d1be1.756e94","name":"","rules":[{"t":"set","p":"temp","pt":"msg","to":"$match(payload,/\\d+\\.*\\d*/)","tot":"jsonata"},{"t":"set","p":"bat","pt":"msg","to":"temp.match","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":740,"y":160,"wires":[["542e0391.8eb54c"]]},{"id":"7c03fd8c.357bb4","type":"change","z":"613d1be1.756e94","name":"","rules":[{"t":"set","p":"temp","pt":"msg","to":"$match(payload,/\\d+\\.*\\d*/)","tot":"jsonata"},{"t":"set","p":"tc","pt":"msg","to":"temp.match","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":740,"y":220,"wires":[["73bd8466.77928c"]]},{"id":"7775b6c6.146cd8","type":"change","z":"613d1be1.756e94","name":"","rules":[{"t":"set","p":"temp","pt":"msg","to":"$match(payload,/\\d+\\.*\\d*/)","tot":"jsonata"},{"t":"set","p":"hum","pt":"msg","to":"temp.match","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":740,"y":280,"wires":[["81f1ea1b.a00768"]]},{"id":"7b773e27.d85c9","type":"change","z":"613d1be1.756e94","name":"","rules":[{"t":"set","p":"temp","pt":"msg","to":"$match(payload,/\\d+\\.*\\d*/)","tot":"jsonata"},{"t":"set","p":"pres","pt":"msg","to":"temp.match","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":740,"y":340,"wires":[["a994e0b8.085ab"]]},{"id":"73bd8466.77928c","type":"debug","z":"613d1be1.756e94","name":"","active":true,"tosidebar":true,"console":false,"tostatus":true,"complete":"tc","targetType":"msg","x":910,"y":220,"wires":[]},{"id":"81f1ea1b.a00768","type":"debug","z":"613d1be1.756e94","name":"","active":true,"tosidebar":true,"console":false,"tostatus":true,"complete":"hum","targetType":"msg","x":920,"y":280,"wires":[]},{"id":"a994e0b8.085ab","type":"debug","z":"613d1be1.756e94","name":"","active":true,"tosidebar":true,"console":false,"tostatus":true,"complete":"pres","targetType":"msg","x":920,"y":340,"wires":[]}]