Right now you need to create a variable in which you store the length of an array if you want to check its length in a condition.
It would be nice if this kind of thing would be possible in the EXPRESSION directly.
Right now you need to create a variable in which you store the length of an array if you want to check its length in a condition.
It would be nice if this kind of thing would be possible in the EXPRESSION directly.
@sebme Thanks for the suggestion. This is fairly straightforward, so we will see if it is possible to prioritize it. What is the use case that brings up the need for you?
Hi pete,
we are fetching a delimited string from a BOM, split it and use its contents to determine what steps need to be displayed to the operator.
E.g.
“Step1,Step2,Step3”
If ther is only one specified, we would like to send the operator straight to that step.
Along the lines of
Right now this requires to go via another variable to determine the array length. And if it is only 1, then we know we can safely fetch the array element at index 0 to send the operator to the right step.
That by itself is not a big deal. However, our app has already so many variables that I would prefer to not have to introduce further “helpers” to get to the desired result.
This sounds like a great idea. Voted!