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);
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
function | public | System.RegularExpressions.pas System.RegularExpressions.hpp |
System.RegularExpressions | TRegEx |
説明
特殊文字をエスケープ コードと置き換えます。
エスケープ コードと置き換えられる Str にある特殊文字を使用した文字列を返します。
考えられる特殊文字は次のとおりです。
'\', '[', ']', '^', '$', '.', '|', '?', '*', '+', '(', ')', '{', '}'
UseWildCards が True のときは、「\*」または「\?」を変換しないでください。