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:

  Reveal hidden contents

 

Posted

  On 2/15/2010 at 3:13 PM, 'AuToItItAlIaNlOv3R said:

It work but for explame i'v this file .txt :

[c

??? please explain more clearly
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:

  Reveal hidden contents

 

Posted (edited)

Is this what you want?

$sStr = FileRead("file.txt")
$sStr = StringRegExpReplace($sStr, "\h+", "")
MsgBox(0, "Result", $sStr)
Edited by GEOSoft

George

  Reveal hidden contents
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...