I don't know how else to explain, so I'll give you List of greek words with english derivatives. Look at the a
table, please, first column. Notice there are words like ἄβαξ
. Using Ruby 1.9.1, which has better encoding support than Ruby 1.8, how could I iterate over each character forming that word? For example, I'd like to get the letters in order, one at a time, like:
ἄ
β
α
ξ
I'm not really sure how to go about that, as the .size
method reports a different length of the string than the ones we perceive. Can you help?