7 lines
131 B
Tcl
7 lines
131 B
Tcl
set string "Hello,How,Are,You,Today"
|
|
|
|
set tokens [split $string ","]
|
|
|
|
foreach tok $tokens {
|
|
puts -nonewline stdout "$tok\t"
|
|
}
|