From: Daniel Carrera Date: 2002-11-28T01:17:15+09:00 Subject: Strings and substrings Hello, str = "hello world" str[0] # -> 104 What does 'str[0]' do? Why does it print 104 instead of "h"? I realize that these work: str[0..0] # -> "h" str[0,1] # -> "h" Could someone explain to me what these do? And why I get: str[0,0] # -> "" Thanks a lot, Daniel.