Last active
November 15, 2018 08:26
-
-
Save canokay/56827df06f550ccc2ceb2c407ce51fb3 to your computer and use it in GitHub Desktop.
Java Split Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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