Character Count Online Code Example


Example: charcount


//Calculate the times a character occurs
public static int charCount(String userInput) {

//convert the string to a char array
char[] StringArray = userInput.toCharArray();

//hashmap that stores the characters. key will be the time it occures
HashMap<Character, Integer>charCount = new HashMap<Character, Integer>();

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable