System.StrUtils.SplitString

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

Delphi

function SplitString(const S, Delimiters: string): TStringDynArray;

C++

extern DELPHI_PACKAGE System::DynamicArray<System::UnicodeString> __fastcall SplitString(const System::UnicodeString S, const System::UnicodeString Delimiters);

プロパティ

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

説明

文字列を指定の区切り文字で区切られた異なる部分に分割します。

SplitString は、文字列を指定の区切り文字で区切られた異なる部分に分割します。S は分割する文字列です。Delimiters は、区切り文字として定義した文字で構成される文字列です。

SplitString は、元の文字列の分割部分を要素とする System.Types.TStringDynArray 型の文字列配列を返します。

関連項目