Iczer Posted April 13, 2021 Share Posted April 13, 2021 I try to restore some garbled UTF-8 symbols in HTML. Originally it was UTF-8 encoding, but it seems transfer or save with local 1-byte encoding broken some non-ANSI symbols. It should be possible to restore it with script - at least online services successfully do it. #include <String.au3> #include <FileConstants.au3> $Cont = 0 $hAC = FileOpen("C:\Temp\ERRtext.htm", $FO_UTF8) $sHTMLSourceCode = FileRead($hAC) FileClose($hAC) $SymbolRaw = "" $aSymbol = StringSplit($sHTMLSourceCode,"") For $i = 0 To UBound($aSymbol)-1 $Symbol = AscW( $aSymbol[$i]) If $Symbol > 127 Then if $Cont Then ConsoleWrite("," & $Symbol) $SymbolRaw &= $aSymbol[$i] Else $SymbolRaw &= $aSymbol[$i] ConsoleWrite("> : " & $Symbol) EndIf $Cont = 1 Else if $Cont Then ConsoleWrite(@TAB & " : {" & $SymbolRaw & "} : " & _StringToHex ( $SymbolRaw ) & @CRLF) EndIf $SymbolRaw = "" $Cont = 0 EndIf Next ConsoleWrite(@CRLF & @CRLF & @CRLF) Output: > : 1074,1026,8482 : {’} : D0B2D082E284A2; --> ;’ > : 1043,169 : {Г©} : D093C2A9; --> ;é > : 1043,169 : {Г©} : D093C2A9; --> ;é > : 1074,1026,8482 : {’} : D0B2D082E284A2; --> ;’ > : 1074,1026,8482 : {’} : D0B2D082E284A2; --> ;’ > : 1074,1026,8482 : {’} : D0B2D082E284A2; --> ;’ > : 1074,8482,1026 : {в™Ђ} : D0B2E284A2D082; --> ;♀ Combinations can be replaced as symbols I deducted just by learning , but I wanted script to decode symbols algorithmic. Maybe there a some sources to read about text restoring... Link to comment Share on other sites More sharing options...
jchd Posted April 14, 2021 Share Posted April 14, 2021 Post offending source file. This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe hereRegExp tutorial: enough to get startedPCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta. SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt) Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now