Skip to content

Instantly share code, notes, and snippets.

@canokay
Last active November 15, 2018 08:26
Show Gist options
  • Save canokay/56827df06f550ccc2ceb2c407ce51fb3 to your computer and use it in GitHub Desktop.
Save canokay/56827df06f550ccc2ceb2c407ce51fb3 to your computer and use it in GitHub Desktop.
Java Split Example
public class uygulama7 {
public static void main(String[] args){
String yazi= "Merhaba canokay";
String [] yazilar = yazi.split(" ");
System.out.println(yazilar[0]);
System.out.println(yazilar[1]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment