Name

strindex — Return the index'th character of string.

Synopsis

strindex string index

Description

The strindex command returns the index'th character of string.

Example

puts [strindex "Hello, world" 0]
puts [strindex "Hello, world" 11]
	  

Produces:

H
d