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

Since String.split() works with regular expressions, this snippet:

String s = "str?str?argh";
s.split("r?");

... yields: [, s, t, , ?, s, t, , ?, a, , g, h]

What's the most elegant way to split this String on the r? sequence so that it produces [st, st, argh]?

EDIT: I know that I can escape the problematic ?. The trouble is I don't know the delimiter offhand and I don't feel like working this around by writing an escapeGenericRegex() function.

share|improve this question

7 Answers

up vote 6 down vote accepted

A general solution using just Java SE APIs is:

String separator = ...
s.split(Pattern.quote(separator));
share|improve this answer

Escape the ?:

s.split("r\\?");
share|improve this answer
1  
a more generic solution was asked – dvhh Jun 17 '11 at 7:59
1  
@dvhh My answer was given before the edit. – Etienne de Martel Jun 17 '11 at 13:59

You can use

StringUtils.split("?r")

from commons-lang.

share|improve this answer
String[] strs = str.split(Pattern.quote("r?"));
share|improve this answer

Use Guava Splitter.

share|improve this answer

This works perfect as well:

public static List<String> splitNonRegex(String input, String delim)
{
    List<String> l = new ArrayList<String>();

    while (true)
    {
        int index = input.indexOf(delim);
        if (index == -1)
        {
            l.add(input);
            return l;
        } else
        {
            l.add(input.substring(0, index));
            input = input.substring(index + delim.length());
        }
    }
}
share|improve this answer

try

String s = "str?str?argh";
s.split("r\?");
share|improve this answer
1  
Unlikely to work because of a missing backslash. – Etienne de Martel Jun 16 '11 at 15:09
Add another backslash and it'll work. – Zhehao Mao Jun 16 '11 at 15:28

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.