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

I have a string

|      859706 | Conficker infected host at 192.168.155.60    |        5744 |       7089 |        5 |                 4 | 1309714576 |
                1 | completed           | 

I need to split the using | which is nothing but pipe ( | ) symbol when i give the following split i get size of the array as 0

columns=parts[i].split('|');

where parts and columns are string arrays

share|improve this question

4 Answers

up vote 3 down vote accepted

| is a regex special character - you can escape it with backslash, so in java, you would write

columns=parts[i].split("\\|"); //first backslash escapes the second for java

EDIT: and if you need to support trailing empty columns, don't forget to use

columns=parts[i].split("\\|", -1);
share|improve this answer
worked like charm – Prady Aug 8 '11 at 7:36
glad to help. see my edit in case it's relevant – Paul Bellora Aug 8 '11 at 8:47

I've had a similar issue and it worked with an escape char in the front i.e.

parts[i].split("\\|")
share|improve this answer

In split method use "[|]" instead "|".

share|improve this answer

you can try columns=parts[i].split("|");

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.