I have successfully used a condition on a polling group in a protocol to only poll the group if the transmitter model string equals a specific model string, ie: FAX3.5K FM in my example below.
However I want polling condition to operate based on the model "FAX" being present in the string.
Is it possible to use wildcards/regex within a condition tag? (ie: example below doesn't work)
https://docs.dataminer.services/develop/schemadoc/Protocol/Protocol.Groups.Group.Condition.html
I am just trying to keep the condition really simple, if it's not possible to do it advanced string comparison beyond an exact string match in the condition tag the next option I think would be to create a QAction that does the logic I need on the "Model Number" parameter 13 and create a new parameter where a simple boolean condition can be used within the group condition.
Wildcards are indeed not supported., your suggested approach using a QAction to perform the matching is therefore a good approach.