Tagged Questions

4
votes
3answers
2k views

simplest, shortest way to count capital letters in a string with php?

I am looking for the shortest, simplest and most elegant way to count the number of capital letters in a given string.
2
votes
3answers
251 views

counting letters for each word in a text with Perl

i am a beginner in programing and i am trying to write a program wit perl which should returns the frequency of all words in the file and the length of each word in the file (not the summe of all ...
0
votes
2answers
96 views

counting letters (only letters) in a long string (python 2.72)

i need to write a function which receives a long string, and puts into a dictionary each letter, and it's it's appearance frequency in the string. iv'e written the next function, but the problem it ...