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: '0010'

How can I get the first two zero on that sample string. The rules here is that, I have a variable which hold a character. Then I need to look on the string, if the first character of the string is same with the variable value. I need to keep it and then if the second string matches again, concatenate it and so on. If the first character of the string is not matched with the variable value then it will not store and not look again on the preceding character.

Though I have already solution but I used about 10 lines of codes to do this.

Here is my code:

    String start = "0001";
    String concatVal = "";
    char prefix = '0';

    for(int i = 0; i < start.length(); i++){
        if(start.charAt(i) == prefix){
            concatVal += prefix;
        } else {
            break;
        }
    }
    System.out.println(concatVal);

            //Output
            000

If there is a more simple way to achieve this, please let me know. Thanks

share|improve this question
Thanks, to all who answered my question. I guess there's a lot of good answer. – ace May 30 '11 at 18:16
Thanks again, to be fair I'll just give +1 for those I did not mark as accepted answer and who have answered faster. – ace May 30 '11 at 18:21

6 Answers

up vote 2 down vote accepted

Your code is already very simple. The English description isn't much shorter, so don't worry. With a little bit of rewriting you get:

public static String prefixOf(String s, char prefix) {
  for (int i = 0; i < s.length(); i++) {
    if (s.charAt(i) != prefix) {
      return s.substring(0, i);
    }
  }
  return s;
}

This definition is only four real lines long:

  1. The method definition is always needed for any algorithm. Doesn't count.
  2. Counts.
  3. Counts.
  4. Counts.
  5. Only a closing brace, which could be omitted.
  6. Only a closing brace, which could be omitted.
  7. Counts.
  8. Every method has to end with a closing brace. Doesn't count.

Compared to your description, this is really short.

share|improve this answer

You may do it without building the result string char-by-char. Instead look for the length of the possible match and then cut from the original string.

int length = 0;
while (length < start.length() && start.charAt(length) == prefix) {
    length++;
}
String concatVal = start.substring(0, length);
share|improve this answer
If you wanted to make it really short, you could use a for loop. ;) – Peter Lawrey May 30 '11 at 17:45
1  
@Peter You forgot the "and almost unreadable" ;-) I just don't like empty for-loops. – Howard May 30 '11 at 17:47

Looks pretty good, one possible change would be

for(char ch : start.toCharArray())
{
if(ch == prefix)
{
   concatVal += prefix; 
} else {    
   break; 
 }
}
share|improve this answer
Why not use a char ch instead of Character object. – Peter Lawrey May 30 '11 at 17:44
Yes your right. both would work but ill fix it. – RMT May 30 '11 at 17:46

You could just extract the result from the original string.

String text = "0001";
char prefix = '0';
String result = text;

for(int i = 0; i < text.length(); i++){
    if(text.charAt(i) != prefix) {
        result = text.substring(0, i);
        break;
    }
}
System.out.println(result);
share|improve this answer
1  
You mixed up start and text which should be the same? – Howard May 30 '11 at 17:42
@Howard, thank you. Fixed now. – Peter Lawrey May 30 '11 at 17:43

And what will be if you will have start equals to 1000 and prefix the same?


P.S. Maybe I do not correct understand your description

If the first character of the string is not matched with the variable value then it will not store and not look again on the preceding character.

Could you explain me this line? Thanks, It is mandatory!

share|improve this answer
Yes, that is my intention. If ever I found the character on the string from first index I'll keep it and the same goes on the preceding character of the string. – ace May 30 '11 at 18:09
And what will be if first symbol not equal ? Just go to the next or skip this string? – Sergii Zagriichuk May 30 '11 at 18:42
    String start="0001";
    String concat="";
    String prefix="0";
    for(int i=0;i<start.length();i++){
        if(!prefix.contains(String.valueOf(start.charAt(i)))){
            concat=start.substring(0, i);
            break;
        }
    }
    System.out.println(concat);
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.