(For all intents and purposes, this project is dead, but let us just call it "Deferred Indefinitely". Shall we?)
You need to iterate over every character in a string.
Use the each_byte string iterator:
aString.each_byte {
|c|
# do something with c
}
Strings are enumerable. This means that you have a number of predefined methods for enumerating or iterating over each element of the collection. each_byte is a specialization of the String#each which allows you to specify your separator so you can iterate over characters, words, sentances or whatever.
Status: In Progress