UDF > Inet >


_INetExplorerCapable

Convertit une chaîne en une ligne possible d'IE (Internet Explorer)

#include <Inet.au3>
_INetExplorerCapable ( $sIEString )

Paramètre

$sIEString Chaîne à convertir

Valeur de retour

Succès: Retourne la chaîne convertie.
Échec: Retourne une chaîne vide et définit @error <> 0.

Remarque

Cette fonction convertit les caractères incompatibles avec IE en '%' suivi de leur valeur hexadécimale.

Exemple

#include <Inet.au3>
#include <MsgBoxConstants.au3>

MsgBox($MB_SYSTEMMODAL, "", _INetExplorerCapable(InputBox("", "Enter a string to convert into browser readable text")))