vote up 0 vote down star

I have to port some C# code to Java and I am having some trouble converting a string splitting command.

While the actual regex is still correct, when splitting in C# the regex tokens are part of the resulting string[], but in Java the regex tokens are removed.

What is the easiest way to keep the split-on tokens?

Here is an example of C# code that works the way I want it:

using System;

using System.Text.RegularExpressions;

class Program
{
    static void Main()
    {
        String[] values = Regex.Split("5+10", @"([\+\-\*\(\)\^\\/])");

        foreach (String value in values)
            Console.WriteLine(value);
    }
}

Produces:
5
+
10
flag

75% accept rate
4  
Can you give us an example of your input and the regex you are using to split? – Andrew Hare Jun 16 at 17:43
As a general note, I'm pretty sure that inside a character class (the square brackets, "[]"), you don't need quite so many backslashes. Can anyone else confirm? – mmyers Jun 16 at 18:07
I probably don't need the backslashes, but I didn't write the regex, I am just porting the code. – unknown (yahoo) Jun 16 at 18:09

2 Answers

vote up 1 vote down check

I don't know how C# does it, but to accomplish it in Java, you'll have to approximate it. Look at how this code does it:

public String[] split(String text) {
    if (text == null) {
        text = "";
    }

    int last_match = 0;
    LinkedList<String> splitted = new LinkedList<String>();

    Matcher m = this.pattern.matcher(text);

    // Iterate trough each match
    while (m.find()) {
        // Text since last match
        splitted.add(text.substring(last_match,m.start()));

        // The delimiter itself
        if (this.keep_delimiters) {
            splitted.add(m.group());
        }

        last_match = m.end();
    }
    // Trailing text
    splitted.add(text.substring(last_match));

    return splitted.toArray(new String[splitted.size()]);
}
link|flag
vote up 0 vote down

This is because you are capturing the split token. C# takes this as a hint that you wish to retain the token itself as a member of the resulting array. Java does not support this.

link|flag
Try the following: using System; using System.Text.RegularExpressions; class Program { static void Main() { String[] values = Regex.Split("5+10", @"([\+\-*\(\)\^\\/])"); foreach (String value in values) Console.WriteLine(value); } } – unknown (yahoo) Jun 16 at 17:58

Your Answer

Get an OpenID
or

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