Mi question es que tengo un problema con el comando _StringBetween, ya que yo creo mi pequño code para leer un texto:
Código: Seleccionar todo
#include <String.au3>
If FileExists(@ScriptDir & "/p.txt") Then
$file = FileRead(@ScriptDir & "/p.txt")
$final = _StringBetween($file, "<html>", "</html>")
FileWrite("text.txt", $final)
Exit
Else
MsgBox(1, "Error", "No se pudo leer")
Exit
EndIf
En la p.txt solo pone
Código: Seleccionar todo
<html>
HOLAAA
</html>
Gracias!