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