最終更新:2008-01-04 (金) 20:38:30 (5950d)  

Quartz Composer/String Components
Top / Quartz Composer / String Components

文字列をセパレータで分解して、文字列の配列 (Structure) を出力

入力

  • String (String) : 分解したい文字列。
  • Separator (String) : セパレータ文字列。この文字列で String を分解する。この文字列を空にすると、1文字単位に分割した配列を出力する。

出力

  • Component List (Structure) : String を Separator で分解した結果の配列 (Structure)。

例 : String = "Apple,Orange", Separator = ",", Component List = { 0 = "Apple", 1 = "Orange" }。

  • 備考 : 2byte文字列にも対応しているようです。