Always consult the API for this kind of things. String would be a good place to start, and split is a good keyword to look for, and indeed, you'll find this:
public String[] split(String regex): Splits this string around matches of the given regular expression.
System.out.println(java.util.Arrays.toString(
"a b c".split(" ")
)); // prints "[a, b, c]"
System.out.println(java.util.Arrays.toString(
"a_b_c".split("_")
)); // prints "[a, b, c]"
Do keep in mind that regex metacharacters (such as dot .) may need to be escaped:
System.out.println(java.util.Arrays.toString(
"a.b.c".split(".")
)); // prints "[]"
System.out.println(java.util.Arrays.toString(
"a.b.c".split("\\.")
)); // prints "[a, b, c]"
Here's an example of accessing individual parts of the returned String[]:
String[] parts = "abc_def.ghi".split("_");
System.out.println(parts[1]); // prints "def.ghi"
As for what you want, it's not clear, but it may be something like this:
System.out.println(java.util.Arrays.toString(
"abc_def.ghi".split("[._]")
)); // prints "[abc, def, ghi]"
It's also possible that you're interested in the limited split:
System.out.println(java.util.Arrays.toString(
"abc_def_ghi.txt".split("_", 2)
)); // prints "[abc, def_ghi.txt]"
Yet another possibility is that you want to split on the last _. You can still do this with regex, but it's much simpler to use lastIndexOf instead:
String filename = "company_secret_128517.doc";
final int k = filename.lastIndexOf('_');
String head = filename.substring(0, k);
String tail = filename.substring(k+1);
System.out.printf("[%s] [%s]", head, tail);
// prints "[company_secret] [128517.doc]"
String.split(). – Kilian Foth May 26 '10 at 7:50"test_1.doc".split("_")you can take the second element which will be"1.doc". Alternatively you can just useindexOfto find the position of the"_"and then take a substring - no need for regexps. – mikej May 26 '10 at 7:52