Afficher les séparateurs de milliers dans un nombre
Procédure
proc add_thousand_separators {value} {
return [::tcl::string::trimleft [::tcl::string::reverse [regsub -all {...} [::tcl::string::reverse $value] {& }]] " "]
}
Exemple
add_thousand_separators 16165152
Tcl: 16 165 152
ou
Procédure
proc add_thousand_separators {value} {
return [::tcl::string::trimleft [::tcl::string::reverse [regsub -all {...} [::tcl::string::reverse $value] {&.}]] "."]
}
Exemple
add_thousand_separators 16165152
Tcl: 16.165.152