Here you can find the source of countChars(String input)
public static int countChars(String input)
//package com.java2s; //License from project: Open Source License public class Main { public static int countChars(String input) { return input.length(); }/*from w w w. ja va 2 s .c o m*/ }