System.SysUtils.StrPas
Delphi
function StrPas(const Str: PAnsiChar): AnsiString;
function StrPas(const Str: PWideChar): UnicodeString;
C++
extern DELPHI_PACKAGE System::AnsiString __fastcall StrPas _DEPRECATED_ATTRIBUTE1("Moved to the AnsiStrings unit") (const char * Str)/* overload */;
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
function | public | System.SysUtils.pas System.SysUtils.hpp |
System.SysUtils | System.SysUtils |
説明
警告: StrPas の ANSI バージョンは廃止予定です。AnsiStrings ユニットを使用してください。
ヌルで終わる文字列を AnsiString に変換します。
この関数は,下位互換性を保つだけの目的で用意されています。ヌルで終わる文字列を AnsiString または Delphi のネイティブ言語に変換するには,型キャストまたは単に代入してください。