Is there a way to keep agent capabilities as Integers, so the job/task can require agent with, for example "TEST_UNIT capability bigger than 3"?
I mean classic integer comparison, without using crazy regexp patterns.
Hi @mireksz,
Yes using this regex.
^(?:[3-9]|[12]\d)\d*$
Matches anything above 3. regex equal or greater than the number 3
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.