我有一个字符串列表:
def parsed_list = ['29/29(100%)', '36/36(10%)', '32/32(100%)', '18/18(100%)', '18/18(100%)', '6/6(100%)']
我想提取百分比值:100%、100%、100%、100%、100%、100%、100%、100%
我正在尝试使用这些代码段:
def percentages = parsed_list*.find(/\d+%/)
但我得到这个错误:spread not yet supported for CPS transformation
我应该改进什么?
1条答案
按热度按时间zbsbpyhn1#
尝试不使用跨页运算子