Java Char Count countCharacter(String content, char character)

Here you can find the source of countCharacter(String content, char character)

Description

Returns the number of occurrences of the given character in the given string.

License

Apache License

Declaration

public static int countCharacter(String content, char character) 

Method Source Code

//package com.java2s;
/*-------------------------------------------------------------------------+
|                                                                          |
| Copyright 2005-2011 The ConQAT Project                                   |
|                                                                          |
| Licensed under the Apache License, Version 2.0 (the "License");          |
| you may not use this file except in compliance with the License.         |
| You may obtain a copy of the License at                                  |
|                                                                          |
|    http://www.apache.org/licenses/LICENSE-2.0                            |
|                                                                          |
| Unless required by applicable law or agreed to in writing, software      |
| distributed under the License is distributed on an "AS IS" BASIS,        |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and      |
| limitations under the License.                                           |
+-------------------------------------------------------------------------*/

public class Main {
    /**/*from w  ww. j av  a  2  s  . c o  m*/
     * Returns the number of occurrences of the given character in the given
     * string.
     */
    public static int countCharacter(String content, char character) {
        int count = 0;
        for (char c : content.toCharArray()) {
            if (c == character) {
                count++;
            }
        }
        return count;
    }
}

Related

  1. countChar(final String aString, final char aChar)
  2. countChar(final String host, final char charactor)
  3. countChar(int start_index, int end_index, StringBuffer txt, char c)
  4. countChar(String a_text, char a_character)
  5. countCharacter(final String sourceString, final char lookFor)
  6. countCharacterOccurrences(String string, char c)
  7. countCharacters(String code, char c, int start, int end)
  8. countCharacters(String str, char chr)
  9. countCharInString(String s, char c)