I've a text variable in the following format -
value1|34|value2|45|value3|67|value4|687|
Now I just have the text 'value3
' with me and I've to remove that value along with its associated number from the above string. After removing it I've to get -
value1|34|value2|45|value4|687|
Note: The numbers in the pipelines are prefixed with its value string. Ex - Value|56|. So if I've to remove a value I've to remove it along with its number.