Jump to content

Find & Replace Script [Help]


MARAN
 Share

Recommended Posts

Hello,

There's any way to search & replace a defined string on an text file (using FileOpen/Read/Write functions)?

I.e.: Search = Á; Replace = Á

I'm a beginner in AutoIt, so any help would be helpful :D

Thanx in advice.

Edited by MARAN
Link to comment
Share on other sites

I just used your post as the input file.

#include <file.au3>
Dim $string = "would be helpful"
Dim $replaceString = "might be nice"
Dim $aStrings

If Not _FileReadToArray("fString.txt",$aStrings) Then
   MsgBox(4096,"Error", "Cannot locate input file.")
   Exit
EndIf


for $i = 1 To $aStrings[0]
    If StringInStr($aStrings[$i], $string) Then
        $aStrings[$i] = StringReplace($aStrings[$i], $string, $replaceString)
    EndIf
Next

 _FileWriteFromArray("fStringsReplaced.txt", $aStrings, 1)
Edited by notta
Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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