Convertit une chaîne en une ligne possible d'IE (Internet Explorer)
#include <Inet.au3>
_INetExplorerCapable ( $sIEString )
$sIEString | Chaîne à convertir |
Succès: | Retourne la chaîne convertie. |
Échec: | Retourne une chaîne vide et définit @error <> 0. |
Cette fonction convertit les caractères incompatibles avec IE en '%' suivi de leur valeur hexadécimale.
#include <Inet.au3> #include <MsgBoxConstants.au3> MsgBox($MB_SYSTEMMODAL, "", _INetExplorerCapable(InputBox("", "Enter a string to convert into browser readable text")))