"prefix/dir1/dir2/dir3/dir4/.."
how to parse the dir1,dir2 .. value out of the above string in JAVA?
The prefix here can be : /usr/local/apache2/resumes
|
|
If you want to split the For example:
Output
Edit Case with a
The substring without the prefix Output:
Edit again If this |
|||||||||||
|
|
In this case, why not use |
|||
|
|
String str = "/usr/local/apache/resumes/dir1/dir2";
String prefix = "/usr/local/apache/resumes/";
if( str.startsWith(prefix) ) {
str = str.substring(0, prefix.length);
String parts[] = str.split("/");
// dir1=parts[0];
// dir2=parts[1];
} else {
// It doesn't start with your prefix
}
|
|||
|
|
If it's a File, you can get the parts by creating an instanceof File and then ask for its segments. This is good because it'll work regardless of the direction of the slashes; it's platform independent (except for the "drive letters" in windows...) |
|||
|
|
|
||||
|
String.split(String regex) is convenient but if you don't need the regular expression handling then go with the substring(..) example, java.util.StringTokenizer or use Apache commons lang [1]. The performance difference when not using regular expressions can be a gain of 1 to 2 orders of magnitude in speed. |
|||
|
|
|
||||
|
|
output-- dir1 dir2 dir3 dir4 |
|||
|
|
|
|||
|
|