Jump to content

Recommended Posts

Posted

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 :mellow:

Thank's for help!

Posted

$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

 

Posted

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 :mellow:

I hope tha you have understand me...

hi!

Posted

Once again the help file is your friend :mellow:

"Function StringStripWS

Remarks

Whitespace 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

 

Posted (edited)

Is this what you want?

$sStr = FileRead("file.txt")
$sStr = StringRegExpReplace($sStr, "\h+", "")
MsgBox(0, "Result", $sStr)
Edited 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!"

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...