Java Char Count countChars( final String testString, final char match )

Here you can find the source of countChars( final String testString, final char match )

Description

count Chars

License

Apache License

Declaration

public static long countChars( final String testString, final char match ) 

Method Source Code

    //package com.java2s;
    /*// w ww .  ja  v a 2  s .co  m
     This file is licensed to You 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 {
        public static long countChars( final String testString, final char match ) {
    return testString.codePoints().filter( ch -> ch == match ).count();
}
    }

Related

  1. countCharacter(String content, char character)
  2. countCharacterOccurrences(String string, char c)
  3. countCharacters(String code, char c, int start, int end)
  4. countCharacters(String str, char chr)
  5. countCharInString(String s, char c)
  6. countChars(final String str, final char c)
  7. countChars(final String str, final char chr)
  8. countChars(final String string, final String findStr)