Hi, i wrote a script that can replace multiple strings in a xml file works fine but so slow!
I've used StringReplace ,_ReplaceStringInFile, StringRegExpReplace, all the same very slow,.
The number of replacements in the file about 8000
Any help would be greatly appreciated
#include <File.au3>
$path = @ScriptDir & '\xmlfo.xml'
$OXML = FileOpen($path, 256)
$XML = FileRead($OXML)
$term = 'post'
$nofr = 1
Local $aArray = StringRegExp($XML, '(?s)<entry[^>]*>.*?</entry>', 3)
FileClose($OXML)
$XL = $XML
If Not @error Then
For $i = 0 To UBound($aArray) - 1
;get dat