I'm trying to make a lookup to a hash table m.notes
using concatenated value of position.qid
and literal ".qid"
like this:
$tag(name="itemId", content=m.notes.(position.qid".qid").itemId)$
I tried different options, but I get runtime error. Can someone correct my syntax?
Not sure whether such concatenation is possible in string template. Why don't you use a different method that could do the concatenation and return the value.
e.g:
position.fullQid
instead ofposition.qid
where,