Skip to content

Instantly share code, notes, and snippets.

@danielamorais
Last active December 23, 2017 02:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danielamorais/1ef2bc53093fd0d2c86bebf4bb480d02 to your computer and use it in GitHub Desktop.
Save danielamorais/1ef2bc53093fd0d2c86bebf4bb480d02 to your computer and use it in GitHub Desktop.
List<String> names = Arrays.asList("John", "Jack", "Hamilton", "George");
for(String name : names){
if(name.startsWith("J")){
System.out.println(name);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment