@Test
 public void detect() {
   char character = StringIterate.detect("1a2a3", CharPredicate.IS_LETTER);
   Assert.assertEquals('a', character);
 }