System.RegularExpressions.TRegEx.Escape
Delphi
class function Escape(const Str: string; UseWildCards: Boolean = False): string; static;
C++
static System::UnicodeString __fastcall Escape(const System::UnicodeString Str, bool UseWildCards = false);
Propriétés
Type | Visibilité | Source | Unité | Parent |
---|---|---|---|---|
function | public | System.RegularExpressions.pas System.RegularExpressions.hpp |
System.RegularExpressions | TRegEx |
Description
Remplace des caractères spéciaux avec leurs codes d'échappement.
Renvoie une chaîne de caractères avec les caractères spéciaux dans Str remplacés par leurs codes d'échappement.
Les caractères spéciaux suivants sont pris en considération :
'\', '[', ']', '^', '$', '.', '|', '?', '*', '+', '(', ')', '{', '}'
Si UseWildCards vaut True, ne convertissez pas '\*' ou '\?'.