私の次のコードは2つの日付をフェッチします
foreach records $get_times {
lassign $records start_date stop_date
puts [clock format [clock scan $start_date] \
-format {%d %b}]
puts [clock format [clock scan $stop_date] \
-format {%d %b}]
}
start_tdateとstop_dateの間のすべての日付を表示する方法はありますか?何かのようなもの:
puts "<tr><td>the $start_date</td>the next Date</td><td>....</td><td>the $stop_date</td>"