I have to write a function which puts out certain letters from a Word and counts them. E.g. function("Testabc",letter[2:5]) = 3, as only "b","c","e" are in the 2nd to 5th letters of the Roman alphabet.
↧
I have to write a function which puts out certain letters from a Word and counts them. E.g. function("Testabc",letter[2:5]) = 3, as only "b","c","e" are in the 2nd to 5th letters of the Roman alphabet.