strindex — Return the index'th character of string.
strindex string index
strindex
string
index
The strindex command returns the index'th character of string.
puts [strindex "Hello, world" 0] puts [strindex "Hello, world" 11]
Produces:
H d