asked on July 7, 2020
If you have a multi-value token named %(Fruits) with:
- Apple
- Orange
- Banana
Then when you iterate over the token with indexes:
- %(Fruits#[1]#) = Apple
- %(Fruits#[2]#) = Orange
- %(Fruits#[3]#) = Banana
- %(Fruits#[4]#) = Banana
- %(Fruits#[5]#) = Banana
I don't understand why indexes 4 and 5 would not just return a blank value and/or raise an exception. Is there a way around this?
2
0