有没有办法从字符串中获取数据知道其模板? 我的意思是例如
def template = "${person} came up with the idea to collect ${item}."
def text = "Peter came up with the idea to collect coins."
然后检索Peter
和coins
?
答案 0 :(得分:0)
如果您的模板是一个常规字符串(GString
),那么您可以使用getStrings()
和getValues()
方法访问它的每个部分。