I have a property "numbers" which contains values seperated with a pipe symbol:
[property:numbers] = 234|214|34|4Is there a way to express that I want to split this string with the seperator | and only use the 1. 2. 3. or 4. part in a visio?
Michiel Vanthuyne [SLC] [DevOps Enabler] Posted new comment 13th November 2024
Hi,
You could achieve this with the proposal of Miguel, but I highly suggest to explore the new placeholder that is better fit for this use case!
Kind Regards,
Jarno
Jarno Lernou [SLC] [DevOps Enabler] Answered question 12th November 2024
Hi Dominik, this should be possible using the "index" option.
The resulting command will be something like Regexmatch(([^|;]+),[property:numbers],index=0) to select the first number of the list.