I need to split a string base on delimiter - and .. Below are my desired output.
AA.BB-CC-DD.zip ->
AA
BB
CC
DD
zip
but my following code does not work.
private void getId(String pdfName){
String[]tokens = pdfName.split("-\\.");
}
|
I think you need to include the regex OR operator:
What you have will match "-." not a "-" or a "." |
|||||
|
|
|
Try this regex |
|||||||||
|
|
You can use the regex "\W".This matches any non-word character.The required line would be:
|
|||
|
|
|
The string you give
That means to split on any character in the |
|||||
|
|
Using Guava you could do this:
|
|||
|
|
|
If you know the sting will always be in the same format, first split the string based on "." and store the string at the first index in a variable. Then split the string in the second index based on "-" and store indexes 0, 1 and 2. Finally split index 2 of the previous array based on . and you should have obtained all of the relevant fields. ie.
|
|||||||
|
|
Regex will degrade your performance. I would recommend write a method which will go character by character and split string if need. You can optimize this futher to get log(n) performance. |
|||
|
|
AA/BB/CC...) – T.J. Crowder May 13 '11 at 15:02