- string index string charIndex
- integer — The char specified at this integral index.
- end — The last char of the string.
- end-integer — The last char of the string minus the specified integer offset (e.g. end-1 would refer to the "c" in "abcd").
Returns for index an integer, the charIndex'th character in string. If index is end, the last character in string, and if index is end-integer, the last character minus the specified offset. (From the Tcl/Tk Reference Guide)
For example,
string index "abcde" "3"returns "d" . Notice that the index is zero based - the first character is index 0.
string index "abcde" "10"returns "" . There is no 10th character. No error is returned here.
