System.SysUtils.StrPos

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

function StrPos(const Str1, Str2: PAnsiChar): PAnsiChar;
function StrPos(const Str1, Str2: PWideChar): PWideChar;

C++

extern DELPHI_PACKAGE char * __fastcall StrPos _DEPRECATED_ATTRIBUTE1("Moved to the AnsiStrings unit") (const char * Str1, const char * Str2)/* overload */;

プロパティ

種類 可視性 ソース ユニット
function public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils System.SysUtils

説明

警告: StrPos の ANSI バージョンは廃止予定です。AnsiStrings ユニットを使用してください。

Str1 内の最初の Str2 を指すポインタを返します。

StrPos 関数は,Str1 内の最初の Str2 を指すポインタを返します。Str2 が Str1 にない場合,StrPos は nil(Delphi)または NULL(C++)を返します。

メモ:  ソース文字列に国別文字が含まれている場合は,かわりに AnsiStrPos を使用します。

関連項目