fork download
  1. set a [list "1.2 1.3 1.6 1.7 1.8"]
  2. set x [regexp -all -inline {\S+} $a]
  3. foreach z $x {
  4. puts $z
  5. }
Success #stdin #stdout 0s 28064KB
stdin
Standard input is empty
stdout
{1.2
1.3
1.6
1.7
1.8}