Code: Select all
"SELECT count(*) from $table;"
Is it possible to let is show like: 1.392 (with the dot)
Same ofcourse if the count its more then a million: 1.234.323
thanks
Code: Select all
"SELECT count(*) from $table;"
Code: Select all
if {[string len $number]>3} {
for {set j [expr {[string len $number]-3}]} {$j > 0} {incr j -3} {
set number [string range $number 0 [expr {$j-1}]].[string range $number $j end]
}
}