vote up 3 vote down star

I have the string

a.b.c.d

I want to count the occurrences of '.' in an idiomatic way, preferably a one-liner.

(Previously I had expressed this constraint as "without a loop", in case you're wondering why everyone's trying to answer without using a loop).

flag

75% accept rate
why the loop aversion? – Blair Conrad Nov 9 '08 at 16:02
Homework? Because otherwise I don't see the requirement to avoid the loop. – PhiLho Nov 9 '08 at 16:13
Not averse to a loop so much as looking for an idiomatic one-liner. – Bart Nov 17 '08 at 14:28

13 Answers

vote up 15 vote down check

I had an idea similar to Mladen, but the opposite...

String s = "a.b.c.d";
int charCount = s.replaceAll("[^.]", "").length();
println(charCount);
link|flag
Correct. ReplaceAll(".") would replace any character, not just dot. ReplaceAll("\\.") would have worked. Your solution is more straightforward. – VonC Nov 9 '08 at 16:20
jjnguy had actually suggested a replaceAll("[^.]") first, upon seeing my "a.b.c.d".split("\\.").length-1 solution. But after being hit 5 times, I deleted my answer (and his comment). – VonC Nov 9 '08 at 16:24
vote up 16 vote down

Sooner or later, something has to loop. It's far simpler for you to write the (very simple) loop than to use something like split which is much more powerful than you need.

By all means encapsulate the loop in a separate method, e.g.

public static int countOccurrences(String haystack, char needle)
{
    int count = 0;
    for (int i=0; i < haystack.length(); i++)
    {
        if (haystack.charAt(i) == needle)
        {
             count++;
        }
    }
    return count;
}

Then you don't need have the loop in your main code - but the loop has to be there somewhere.

link|flag
1  
Sounds like a homework question to me. Still, +1 for being the voice of reason. – Bill the Lizard Nov 9 '08 at 14:49
for (int i=0,l=haystack.length(); i < l; i++) be kind to your stack – Chris yesterday
1  
@Chris, are you one working on a PC from the 80-ies that you're worried about such things? – Bart K. yesterday
i see, "Jon" can do that ... ok – Chris yesterday
1  
not only that but this is possibly an anti optimization without taking a look at what the jit does. If you did the above on an array for loop for example you might make things worse. – ShuggyCoUk 8 hours ago
show 3 more comments
vote up 9 vote down
String s = "a.b.c.d";
int charCount = s.length() - s.replaceAll("\\.", "").length();

ReplaceAll(".") would replace all characters.

PhiLho's solution uses ReplaceAll("[^.]",""), which does not need to be escaped, since [.] represents the character 'dot', not 'any character'.

link|flag
I like this one. – jjnguy Nov 9 '08 at 15:09
I like this one. There's still a loop there, of course, as there has to be. – Paul Nov 9 '08 at 15:13
This one is easy to understand. – Ben Page Nov 9 '08 at 15:38
Untested, eh? :-) – PhiLho Nov 9 '08 at 16:14
well i wrote it in c# :) i'm not a java guy. but it's the principle that counts right? :)) – Mladen Prajdic Nov 9 '08 at 16:31
show 1 more comment
vote up 8 vote down

here is a solution without a loop:

public static int countOccurrences(String haystack, char needle, int i){
    return ((i=haystack.indexOf(needle, i)) == -1)?0:1+countOccurrences(haystack, needle, i+1);}


System.out.println("num of dots is "+countOccurrences("a.b.c.d",'.',0));

well, there is a loop, but it is invisible :-)

-- Yonatan

link|flag
Unless your string is so long you get an OutOfMemoryError. – Spencer K Nov 9 '08 at 15:50
The problem sounds contrived enough to be homework, and if so, this recursion is probably the answer you're being asked to find. – sylvarking Nov 9 '08 at 17:43
That uses indexOf, which will loop... but a nice idea. Posting a truly "just recursive" solution in a minute... – Jon Skeet Nov 9 '08 at 18:03
vote up 2 vote down

Seems a shame to allocate an array just to count the occurrences of a character. Why not write the loop?

link|flag
Yes. Someone has to write it, why not you? – tvanfosson Nov 9 '08 at 14:12
Indeed. If you don't want to look at it, then write it as a function off in a library somewhere. – GeekyMonkey Nov 9 '08 at 17:41
vote up 2 vote down

Okay, inspired my Monatan's solution, here's one which is purely recursive - the only library methods used are length() and charAt(), neither of which do any looping:

public static int countOccurrences(String haystack, char needle)
{
    return countOccurrences(haystack, needle, 0);
}

private static int countOccurrences(String haystack, char needle, int index)
{
    if (index >= haystack.length())
    {
        return 0;
    }

    int contribution = haystack.charAt(index) == needle ? 1 : 0;
    return contribution + countOccurrences(haystack, needle, index+1);
}

Whether recursion counts as looping depends on which exact definition you use, but it's probably as close as you'll get.

I don't know whether most JVMs do tail-recursion these days... if not you'll get the eponymous stack overflow for suitably long strings, of course.

link|flag
No, tail recursion will probably be in Java 7, but it's not widespread yet. This simple, direct tail recursion could be translated to a loop at compile time, but the Java 7 stuff is actually built-in to the JVM to handle chaining through different methods. – sylvarking Nov 10 '08 at 20:11
You'd be more likely to get tail recursion if your method returned a call to itself (including a running total parameter), rather than returning the result of performing an addition. – Stephen Denne Mar 20 at 10:56
vote up 1 vote down

Inspired by Jon Skeet, a non-loop version that wont blow your stack. Also useful starting point if you want to use the fork-join framework.

public static int countOccurrences(CharSequeunce haystack, char needle) {
    return countOccurrences(haystack, needle, 0, haystack.length);
}

// Alternatively String.substring/subsequence is relatively efficient
//   on most, but not all, Java library implementations.
private static int countOccurrences(
    CharSequence haystack, char needle, int start, int end
) {
    if (start == end) {
        return 0;
    } else if (start+1 == end) {
        return haystack.charAt(start) == needle ? 1 : 0;
    } else {
        int mid = (end+start)>>>1; // Watch for integer overflow...
        return
            countOccurrences(haystack, needle, start, mid) +
            countOccurrences(haystack, needle, mid, end);
    }
}

(Disclaimer: Not tested, not compiled, not sensible.)

Perhaps the best (single-threaded, no surrogate-pair support) way to write it:

public static int countOccurrences(CharSequeunce haystack, char needle) {
    int count = 0;
    for (char c : haystack.toCharArray()) {
        if (c == needle) {
           ++count;
        }
    }
    return count;
}
link|flag
vote up 0 vote down

While methods can hide it, there is no way to count without a loop (or recursion). You want to use a char[] for performance reasons though.

public static int count( final String s, final char c ) {
  final char[] chars = s.toCharArray();
  int count = 0;
  for(int i=0; i<chars.length; i++) {
    if (chars[i] == c) {
      count++;
    }
  }
  return count;
}

Using replaceAll (that is RE) does not sound like the best way to go.

link|flag
vote up 0 vote down

Somewhere in the code, something has to loop. The only way around this is a complete unrolling of the loop:

int numDots = 0;
if (s.charAt(0) == '.') {
    numDots++;
}

if (s.charAt(1) == '.') {
    numDots++;
}


if (s.charAt(2) == '.') {
    numDots++;
}

...etc, but then you're the one doing the loop, manually, in the source editor - instead of the computer that will run it. See the pseudocode:

create a project
position = 0
while (not end of string) {
    write check for character at position "position" (see above)
}
write code to output variable "numDots"
compile program
hand in homework
do not think of the loop that your "if"s may have been optimized and compiled to
link|flag
vote up 0 vote down

Here is a slightly different style recursion solution:

public static int countOccurrences(String haystack, char needle)
{
    return countOccurrences(haystack, needle, 0);
}

private static int countOccurrences(String haystack, char needle, int accumulator)
{
    if (haystack.length() == 0) return accumulator;
    return countOccurrences(haystack.substring(1), needle, haystack.charAt(0) == needle ? accumulator + 1 : accumulator);
}
link|flag
vote up 0 vote down

A shorter example is

String text = "a.b.c.d";
int count = text.split("\\.",-1).length-1;
link|flag
vote up 0 vote down

My 'idiomatic one-liner' for this is:

int count = StringUtils.countMatches("a.b.c.d", ".");

Why write it yourself when it's already in commons lang?

link|flag
vote up -3 vote down

omg java api is from the past. when will we have this very basic feature on the most popular programming language in the world? millions of classes, billions of methods, but there is no a simple plain way to count substring ocurrences.

link|flag
This functionality is only useful for answering assignments IMHO. Java isn't the coolest language in the world, but it is designed to have useful functionality for real world programs. – Peter Lawrey yesterday
Not sure how complaining about a language you don't like really adds a lot to the discussion – Matt 21 hours ago

Your Answer

Get an OpenID
or

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