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 "004-034556" that I want to split into two strings:

string1=004
string2=034556

That means the first string will contain the characters before '-', and the second string will contain the characters after '-'. I also want to check if the string has '-' in it. If not, I will declare an exception. How can I do this?

share|improve this question
3  
3 great answers to your question in 10 minutes. Enjoy! – jjnguy Aug 14 '10 at 3:12

9 Answers

up vote 68 down vote accepted

Just use the appropriate method: String#split().

String string = "004-034556";
String[] parts = string.split("-");
String part1 = parts[0]; // 004
String part2 = parts[1]; // 034556

(note that this takes a regular expression, so remember to escape special characters if necessary, e.g. if you want to split on period which means "any character" in regex, use split("\\."))

To test beforehand if the string contains a -, just use String#contains().

if (string.contains("-")) {
    // Split it.
} else {
    throw new IllegalArgumentException("String " + string + " does not contain -");
}

(no, this does not take a regular expression)

share|improve this answer
Thank you for this :) – RDC Nov 23 '12 at 7:18

//This leaves the regexes issue out of question //But we must remember that each character in the Delimiter String is treated like a single delimiter

    public static String[] SplitUsingTokenizer(String Subject, String Delimiters) 
    {
     StringTokenizer StrTkn = new StringTokenizer(Subject, Delimiters);
     ArrayList<String> ArrLis = new ArrayList<String>(Subject.length());
     while(StrTkn.hasMoreTokens())
     {
       ArrLis.add(StrTkn.nextToken());
     }
     return ArrLis.toArray(new String[0]);
    }
share|improve this answer
1  
This is the "no muss, no fuss" way to do it, imho – DWoldrich May 28 at 9:52
String[] result = yourString.split("-");
if (result.length != 2) 
     throw new IllegalArgumentException("String not in correct format");

This will split your string into 2 parts. The first element in the array will be the part containing the stuff before the -, and the 2nd element in the array will contain the part of your string after the -.

If the array length is not 2, then the string was not in the format: string-string.

Check out the split() method in the String class.

http://download-llnw.oracle.com/javase/6/docs/api/java/lang/String.html

share|improve this answer
1  
This will accept "-555" as input and returns [, 555]. The requirements aren't defined that clear, if it would be valid to accept this. I recommend writing some unit-tests to define the desired behaviour. – Michael Konietzka Aug 14 '10 at 6:36
String[] out = string.split("-");

should do thing you want. String class has many method to operate with string.

share|improve this answer
1  
"String class has many method to operate with string." Yes, one might say it should. – Tom Aug 14 '10 at 3:25

An alternative to processing the string directly would be to use a regular expression with capturing groups. This has the advantage that it makes it straightforward to imply more sophisticated constraints on the input. For example, the following splits the string into two parts, and ensures that both consist only of digits:

import java.util.regex.Pattern;
import java.util.regex.Matcher;

class SplitExample
{
    private static Pattern twopart = Pattern.compile("(\\d+)-(\\d+)");

    public static void checkString(String s)
    {
        Matcher m = twopart.matcher(s);
        if (m.matches()) {
            System.out.println(s + " matches; first part is " + m.group(0) +
                               ", second part is " + m.group(1) + ".");
        } else {
            System.out.println(s + " does not match.");
        }
    }

    public static void main(String[] args) {
        checkString("123-4567");
        checkString("foo-bar");
        checkString("123-");
        checkString("-4567");
        checkString("123-4567-890");
    }
}

As the pattern is fixed in this instance, it can be compiled in advance and stored as a static member (initialised at class load time in the example). The regular expression is:

(\d+)-(\d+)

The parentheses denote the capturing groups; the string that matched that part of the regexp can be accessed by the Match.group() method, as shown. The \d matches and single decimal digit, and the + means "match one or more of the previous expression). The - has no special meaning, so just matches that character in the input. Note that you need to double-escape the backslashes when writing this as a Java string. Some other examples:

([A-Z]+)-([A-Z]+)          // Each part consists of only capital letters 
([^-]+)-([^-]+)            // Each part consists of characters other than -
([A-Z]{2})-(\d+)           // The first part is exactly two capital letters,
                           // the second consists of digits
share|improve this answer

Sometimes if you want to split string containing + then it wont split,instead you will get a runtime error. In that case first replace + to _ and then split

 this.text=text.replace("/", "_");
            String temp[]=text.split("_");
share|improve this answer
1  
super answer , i was stuck on this point. Thumbs up sukant and zzzz : ) – Ahmed Feb 8 at 23:27
3  
This is because the argument to split is a regular expression. A better solution is to correctly escape the regular expression. – Max Mar 27 at 16:49

The requirements left room for interpretation. I recommend writing

a method

public final static String[] mySplit(final String s)

which encapsulate this function. Of course you can use String.split(..) as mentioned in the other answers for the implementation.

You should write some unit-tests for input Strings and the desired results and behaviour. Good test candidates should include

 - "0022-3333" 
 - "-" 
 - "5555-" 
 - "-333"
 - "3344-" 
 - "--" 
 - "" 
 - "553535" 
 - "333-333-33"
 - "222--222" 
 - "222--" 
 - "--4555"

With defining the according test results, you can specify the behaviour. For example if "-333" should return in [,333] or if it is an error. Can "333-333-33" be separated in [333,333-33] or [333-333,33] or is it an error? And so on.

share|improve this answer

You can try like this also

 String concatenated_String="hi^Hello";

 String split_string_array[]=concatenated_String.split("\\^");
share|improve this answer

Try this code

    String serialNo= "004-034556";
    String[] parts = string.split("-");
    String string1 = parts[0]; // 004
    String string2 = parts[1]; // 034556

Also look into this

http://www.java-examples.com/java-string-split-example

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.