Ruta 中的字符串连接
String Concatenation in Ruta
有人知道我在 Ruta 中的字符串连接有什么问题吗?
FOREACH (d) IngredientConcept{} {
d{->CREATE(Entity, "label"="Drug", "value"= d.conceptID + "_" + d.dictCanon)};
}
原因:org.apache.uima.ruta.extensions.RutaParseRuntimeException:匿名错误,第 28 行,“+”:需要 RPAREN,但找到了 PLUS
感谢您的帮助。
菲利普
你试过这个吗:
"value"= "" + d.conceptID + "_" + d.dictCanon
有人知道我在 Ruta 中的字符串连接有什么问题吗?
FOREACH (d) IngredientConcept{} { d{->CREATE(Entity, "label"="Drug", "value"= d.conceptID + "_" + d.dictCanon)}; }
原因:org.apache.uima.ruta.extensions.RutaParseRuntimeException:匿名错误,第 28 行,“+”:需要 RPAREN,但找到了 PLUS
感谢您的帮助。 菲利普
你试过这个吗: "value"= "" + d.conceptID + "_" + d.dictCanon