I have a String "|Republic of Ireland| v/s |Northern Ireland|". This is not a fixed String. In place of "v/s" it can be any other word. I want only "Replublic of Ireland" and "Northern Ireland" in my output. Please tell me how to do it by using String Tokenizer or Split function. I want this in Java language.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
closed as not a real question by tibur, Bill the Lizard♦ May 31 '11 at 12:16
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
You can use the
|
|||||||
|
|
Unless you are planing on always having to parse Python:
Java
As you can see its pretty much the same in all languages. |
|||||
|
|
If you have alternating items of interest in your string, split it at the pipe character and use every second item in your resulting array. Please specify your programming language to obtain a more detailed result. |
|||||
|
String parts[] = "|Republic of Ireland| v/s |Northern Ireland|".split("\\|"), first = parts[1], second = parts[3];– Peter Lawrey May 31 '11 at 13:01