Jump to content

Recommended Posts

Posted (edited)

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

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...