我有以下代码
String templateString = "Some Text $attribute1$ more text $attribute2$ more text";
ST stringTemplate = new ST(templateString ,'$','$');`
如何遍历所有属性,即属性 1、属性 2 等?我想获取模板中的所有属性列表。
我有以下代码
String templateString = "Some Text $attribute1$ more text $attribute2$ more text";
ST stringTemplate = new ST(templateString ,'$','$');`
如何遍历所有属性,即属性 1、属性 2 等?我想获取模板中的所有属性列表。
在 groovy 中只使用这样的正则表达式,它似乎可以满足我现在的需要
List<String> extractTemplateVariables( String statement ) {
Pattern pattern = Pattern.compile( /\$(\w*)\$/ );
def List<String> runTimeParms = []
def matcher = pattern.matcher( statement )
while (matcher.find()) {
runTimeParms << matcher.group( 1 )
}
runTimeParms.removeAll( Collections.singleton( null ) );
runTimeParms.unique( false )
}
但有人告诉我正确的方法是检查 ast 是这样的:
final int ID = 25
char delimiter = '$'
ST st = new org.stringtemplate.v4.ST( statement, delimiter, delimiter );
def dataFieldNames = []
def t = st.getAttributes( )
st.impl.ast.getChildren().each {
if (it != null) {
CommonTree child = it as CommonTree
if (child.toString().equals( "EXPR" )) {
if (child.getChildCount() == 1) {
CommonTree expressionChild = child.getChild( 0 )
if (expressionChild.getToken().getType() == ID) {
dataFieldNames.add( expressionChild.toString() )
} else if (expressionChild.toString().equals( "PROP" )) {
if (expressionChild.getChildCount() == 2) {
dataFieldNames.add(
expressionChild.getChild( 0 ).toString() +
"." +
expressionChild.getChild( 1 ).toString() )
}
}
}
}
}
}
dataFieldNames.unique( false )
}
但我不了解结构或我在这里所做的事情,而且它没有看到比第一个更多的东西。也许有人可以帮助我们找出最好的方法是什么