static S firstIntegerString(Iterable it) { while (it.hasNext()) { S s = it.next(); if (isInteger(s)) ret s; } null; }