Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
需要 groovy 脚本帮助来读取数据源的当前行并获取值 = 0 的属性的名称。
考虑以下数据源的第一行
驾驶执照详细信息 年龄证明详细信息 护照详细信息 医疗保险
1 1 0 0
1 1 1 0
脚本应该返回
护照详细信息和医疗保险
如果您能在这方面帮助我,我将不胜感激。
谢谢你。
使用以下代码:
def passport_details = context.expand('${dataSourceName#passport-details}' ) def medicare = context.expand('${dataSourceName#medicare}' )