I have a list of item with space, e.g.
[[Day 1]] [[Day2]] [[Day3]]
Then I want to remove an item with space (e.g. Day 1
). However, the filter below is not working
[[Day 1]] [[Day2]] [[Day3]] +[remove[Day 1]]
How should I achieve it?
I have a list of item with space, e.g.
[[Day 1]] [[Day2]] [[Day3]]
Then I want to remove an item with space (e.g. Day 1
). However, the filter below is not working
[[Day 1]] [[Day2]] [[Day3]] +[remove[Day 1]]
How should I achieve it?
The remove[...]
operator treats it operand as a space-separated list of values. Thus [remove[Day 1]]
is attempting to remove two items named “Day” and “1”.
To remove a single item that contains spaces, you should use the -[[item value]]
syntax, like this:
[[Day 1]] [[Day2]] [[Day3]] -[[Day 1]]
enjoy,
-e