假设一个字符串执行变量“ anyVariable”的值是多个唯一ID,并用空格(在字符串的开头和结尾之间以及之间)分隔。
anyVariable =“ 123 456 5678 978”
我想获取'anyVariable'执行变量包含“ 456”的进程数。
我写了以下查询:假设 uniquId = 456
count = execution.getEngineServices().getRuntimeService().createExecutionQuery().processVariableValueLike("anyVariable"," "+uniqueID+" ").count();
,但未检测到任何。 我想在活动中执行类似“%456%”的操作。