Global $s_File_Read = @ScriptDir & '\test.txt'
Global $sPattern_Read = '
'
$s_String_Read = FileRead($s_File_Read)
$s_String_Patern_1 = StringInStr($s_String_Read, $sPattern_Read)
If $s_String_Patern_1 Then
»
$s_String_Read = StringReplace($s_String_Read, @CRLF & "
", "
")
$s_String_Read = StringReplace($s_String_Read, @CR & "
", "
")
$s_String_Read = StringReplace($s_String_Read, @LF & "
", "
")
FileWrite($s_File_Read, $s_String_Read)
EndIf
MsgBox (0, 'test', 'OK :)')