I'm trying to figure out the best way to count the occurrences of each character in a string. Sample string: "mississipi" I should get back an array looking like this: Character Count m 1 i 4 s 4 p 1 Any suggestions? -- Arthur