Hallo Martin,
you can use the „+“ operator for concatenation of Strings.
Example: Get all objects of class B, which are inside the class V:
1) Without a variable:
1CC "Modeling" GET_ACT_MODEL
2CC "AQL" EVAL_AQL_EXPRESSION expr:("<\"V\"><-\"Is inside\">\"B\"<") modelid: (modelid)
2) Using a variable:
1CC "Modeling" GET_ACT_MODEL
2SETL sClass:("V")
3CC "AQL" EVAL_AQL_EXPRESSION expr:("<\"" + sClass + "\"><-\"Is inside\">\"B\"<") modelid: (modelid)