the easiest way is to split your string into a list, then you can access the single list elements. set mystring "hello my name is loser" set list [split $mystring " "] set element [lrange $list 0 0] in this example the var element would contain "hello". try to experimen...