I have a python script running in a shell node. It works great but I can't figure out how to use the data that I'm getting this is the output in debug
RTD ADC Code: 7627
PT100 Resistance: 100.085754 ohms
Straight Line Approx. Temp: -17.656250 degC
Callendar-Van Dusen Temp (degC > 0): 0.219423 degC
high fault threshold: 32767
low fault threshold: 0
I've added the returns, it comes out as a long line with return arrows.
The only number I need is the Callendar-Van Dusen Temp shown above as 0.219423. How do I pull that single value from the long string?
Thank you in advance!
This is a straight paste from the debug window-
RTD ADC Code: 7627PT100 Resistance: 100.085754 ohmsStraight Line Approx. Temp: -17.656250 degCCallendar-Van Dusen Temp (degC > 0): 0.219423 degChigh fault threshold: 32767low fault threshold: 0```
I've tried to use the splitter, it breaks the message into separate strings but the entire output is in quotes so I'm not sure how to manipulate that.
Here is output after using the split node on it
Callendar-Van Dusen Temp (degC > 0): 0.219423 degC
Again all I would like to use in the number in the above string