Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm getting a string from the web looking like this:

Latest Episode@04x22^Killing Your Number^May/15/2009

Then I need to store 04x22, Killing Your Number and May/15/2009 in diffent variables, but it won't work.

String[] all = inputLine.split("@");
String[] need = all[1].split("^");
show.setNextNr(need[0]);
show.setNextTitle(need[1]);
show.setNextDate(need[2]);

Now it only stores NextNr, with the whole string

04x22^Killing Your Number^May/15/2009

What is wrong?

share|improve this question

2 Answers

up vote 18 down vote accepted

String.split(String regex)

The argument is a regualr expression, and ^ has a special meaning there; "anchor to beginning"

You need to do:

String[] need = all[1].split("\\^");

By escaping the ^ you're saying "I mean the character '^' "

share|improve this answer
2  
Splitting on a regular expression is the slowest of them all. Take a look at Guava's Splitter class. – Agoston Horvath Jan 24 at 15:56

If you have a separator but you don't know if it contains special characters you can use the following approach

String[] parts = Pattern.compile(separator, Pattern.LITERAL).split(text);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.