fork(3) download
  1. class Ideone {
  2. static void main(String[] args) {
  3. def str = '''[a, b, c, d, e]''';
  4.  
  5. println str.tokenize(',[]').collect { it as String }.asList().size()
  6. }
  7. }
  8.  
Success #stdin #stdout 0.99s 82168KB
stdin
Standard input is empty
stdout
5