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 like this:[name ;24, name;23, name;22]. How can i split this string to obtain only the numbers after";"?

share|improve this question

3 Answers

String s = "[name ;24, name;23, name;22]";
String couples[] = s.replace("]", "").split(",");
int ages[] = new int[couples.length];
for (int i=0; i< couples.length; i++)
    ages[i] = Integer.parseInt(couples[i].split(";")[1]);
share|improve this answer
// Your input looks like this.
String s = "[name ;24, name;23, name;22]";

String[] numberStrings = s
    // First get rid of the known prefix and suffix
    .substring("[name ;".length(), s.length - "]".length())
    // Then split on the repeated portion that occurs between numbers.
    .split(", name;");
share|improve this answer

yet another method

String str = "name ;24, name;23, name;22";
int p = 0;
while ((p  = str.indexOf(";", p + 1))  > -1) {
    System.out.println(str.substring(p+1).split("[^0-9]")[0]);
}
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.