assign “it” in each iteration (groovy)

后端 未结 5 1946
粉色の甜心
粉色の甜心 2021-02-20 03:32

Hey, i try to trim each string item of an list in groovy

list.each() { it = it.trim(); }

But this only works within the closure, in the list th

5条回答
  •  逝去的感伤
    2021-02-20 03:58

    @sepp2k i think that works in ruby

    and this works in groovy list = list.collect() { it.trim(); }

提交回复
热议问题