Answers for "how does the .split function get the string it needs to split? java"

44

How to split a string in Java

String string = "004-034556";
String[] parts = string.split("-");
String part1 = parts[0]; // 004
String part2 = parts[1]; // 034556
Posted by: Guest on February-01-2020
2

split on . in java

String textfile = "ReadMe.txt";
String filename = textfile.split(".")[0];
String extension = textfile.split(".")[1];
Posted by: Guest on October-15-2020

Code answers related to "how does the .split function get the string it needs to split? java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language