static L<Long> allIntsAsLong_regexp_skipBigInts(S s) {
  new L<Long> out;
  for (S x : allIntsAsString_regexp(s)) {
    Number n = parseLongOrBigInt(x);
    if (n cast Long) out.add(n);
  }
  ret out;
}