a = "FooBar" b = a.split(//) b[6,2] #=> [] a[6,2] #=> nil anyone knows why this last one returns nil instead of "" (empty string) ? matju