Problem with decoding received text
Hi,
For received text I need help how to configure boolean parser
OUT29 General alarm:on
OUT29 General alarm:off
For TrueText I set on and for FalseText I set off. I use .NET Regex Tester - Regex Storm for testing.
For ^OUT29.*\b(on|off)\b$ nothing happen.

For \b(on|off)\b boolean parser set value, but problem is that this work for any text with on or off inside. I need this converter for OUT29.

Regards,
Kruno
If I got it right, you want to catch only "on" or "off" . Try following regex pattern:
OUT29 General alarm:(on|off)