我的以下代码获取 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>"