JohnRichard 0 Posted May 1, 2010 I am trying to calculate integer then rounded for 1000. I wanted to insert comma (,) after every thousands. Like Round(8300000/1000, 0) will give me 8300. However i would like the result to be like 8,300. How will i do that. I am trying to do _StringInsert function but could not get it working. Here is my sample script. Can someone share their expertise on this one? Thanks... #include<string.au3> $a = Round(8300000/1000, 0) & " KB" For $i = $a/1000 to $a _StringInsert($a, ",", $i) Msgbox (0, "", $a) Next Share this post Link to post Share on other sites
water 2,392 Posted May 1, 2010 (edited) I think it can be done using StringFormat or even StringRegExpReplace. In 3.3.2 "the function _StringAddThousandsSep() has been removed. There are too many opinions on what this function should do and too many revisions of this function have been made." Edited May 1, 2010 by water My UDFs and Tutorials: Spoiler UDFs:Active Directory (NEW 2020-10-10 - Version 1.5.2.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX (NEW 2020-12-15 - Version 1.6.3.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX_GUI (2020-06-27 - Version 1.3.2.0) - DownloadOutlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - WikiTask Scheduler (2019-12-03 - Version 1.5.1.0) - Download - General Help & Support - WikiTutorials:ADO - Wiki, WebDriver - Wiki Share this post Link to post Share on other sites
water 2,392 Posted May 1, 2010 A replacement for _StringAddThousandsSep has been written. Please check this link. My UDFs and Tutorials: Spoiler UDFs:Active Directory (NEW 2020-10-10 - Version 1.5.2.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX (NEW 2020-12-15 - Version 1.6.3.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX_GUI (2020-06-27 - Version 1.3.2.0) - DownloadOutlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - WikiTask Scheduler (2019-12-03 - Version 1.5.1.0) - Download - General Help & Support - WikiTutorials:ADO - Wiki, WebDriver - Wiki Share this post Link to post Share on other sites
Malkey 231 Posted May 1, 2010 This link has the thousand comma separator added using StringRegExpReplace(). Share this post Link to post Share on other sites
GEOSoft 67 Posted May 1, 2010 The last version that was released with AutoIt is available here. It's a version that uses localization. (second func on the page I think.Another version which uses localization from the registry is available here. GeorgeQuestion about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number.Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else."Old age and treachery will always overcome youth and skill!" Share this post Link to post Share on other sites