AuToItItAlIaNlOv3R Posted February 15, 2010 Posted February 15, 2010 Hi, i would like to erase all space in a text : for esample i've this text: Autoit is the best I would like to erase all space , like this : Autoitisthebest I try with : StringReplace ($File,' ','') But it don't work Thank's for help!
water Posted February 15, 2010 Posted February 15, 2010 $Result = StringStripWS(" Here goes your string ",8) My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
whim Posted February 15, 2010 Posted February 15, 2010 ; file to string $result = StringStripWS(FileRead($infile), 8) ; file to file Func FileStripWS($infile, $outfile) FileWrite( $outfile, StringStripWS(FileRead($infile), 8) ) EndFunc
AuToItItAlIaNlOv3R Posted February 15, 2010 Author Posted February 15, 2010 It work but for explame i'v this file .txt : [c
whim Posted February 15, 2010 Posted February 15, 2010 It work but for explame i'v this file .txt : [c ??? please explain more clearly
AuToItItAlIaNlOv3R Posted February 15, 2010 Author Posted February 15, 2010 It work but for explame i'v this file .txt : Autoit is the best Thanks to all for help Great forum! Hi to all! With this script : $File = FileRead ("C:\file.txt") $Result = StringStripWS($File,8) Filewrite ("C:\editedfile.txt,$Result) While i open the edited file i see this text : AutoitisthebestThankstoallforhelpGreatforum!Hitoall! The script erase the space, but he don't respect the text formattation, i wuold like to erase space but respect text formattation. Infact the script erase also the character "head". For example the my edited file should be like this : Autoitisthe best Thankstoallforhelp Greatforum! Hitoall! I would erase space but the text, but i would respect the text line I hope tha you have understand me... hi!
water Posted February 15, 2010 Posted February 15, 2010 Once again the help file is your friend "Function StringStripWSRemarksWhitespace includes Chr(9) thru Chr(13) which are HorizontalTab, LineFeed, VerticalTab, FormFeed, and CarriageReturn. Whitespace also includes the null string ( Chr(0) ) and the standard space ( Chr(32) ).To strip single spaces between words, use the function StringReplace." My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
GEOSoft Posted February 15, 2010 Posted February 15, 2010 (edited) Is this what you want? $sStr = FileRead("file.txt") $sStr = StringRegExpReplace($sStr, "\h+", "") MsgBox(0, "Result", $sStr) Edited February 15, 2010 by GEOSoft George Question 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!"
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now