System.SysUtils.AnsiPos

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

Delphi

function AnsiPos(const Substr, S: string): Integer;

C++

extern DELPHI_PACKAGE int __fastcall AnsiPos(const System::UnicodeString Substr, const System::UnicodeString S)/* overload */;

プロパティ

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

説明

部分文字列の位置を特定します。

AnsiPos 関数を呼び出すと,Substr パラメータが文字列 S にあるときにそのバイトオフセットを取得できます。たとえば,Substr が文字列「AB」,S が文字列「ABCDE」の場合,AnsiPos は 1 を返します。Substr が S にない場合,AnsiPos は 0 を返します。

メモ:  この関数はマルチバイト文字セット(MBCS)をサポートします。

関連項目