I am trying to:
- concatenate the contents of an arbitrary list of fields for any given tiddler where
- use the results to :intersect the contents of the field in a different tiddler
concatenate the three mask fields below
mask1: a b c
mask2: 1 2 3
mask2: zerg cat
concatenatedMask: a b c 1 2 3 zerg cat
target: first a 1 cat blah eek
intersect: “a b c 1 2 3 zerg cat” with a target field “first a 1 cat blah eek”
The result is would be “a 1 cat”
Basically I am using the concatenated mask to select specific content from the target field.
Thanks