FindOneOf - スクリプトおよびチャート関数
FindOneOf() は、文字列を検索して、指定された文字のセットのいずれかの文字が出現する位置を取得します。The position of the first occurrence of any character from the search set is returned unless a third argument (with a value greater than 1) is supplied. 一致するものがない場合は、0 が返されます。
構文:
FindOneOf( text, char_set[, count])
戻り値データ型: 整数
引数:
引数
text
元の文字列。
char_set
text で検索する文字セット。
count
検索するいずれかの文字のうち、出現する文字を定義します。たとえば、値 2 は 2 番目の出現を検索します。
Example: Chart expressions FindOneOf( 'my example text string', 'et%s') Returns '4' because ‘e’ is the fourth character in the example string. FindOneOf( 'my example text string', 'et%s', 3) Returns '12' because the search is for any of the characters e , t , % or s , and "t " is the third occurrence in position 12 of the example string. FindOneOf( 'my example text string', '¤%&') Returns '0' because none of the characters ¤ , % , or & exist in the example string.
ロード スクリプトと結果 Load *
Inline
[SearchFor, Occurrence
et%s,1
et%s,3
¤%&,1]
結果
SearchFor 出現 FindOneOf('my example text string', SearchFor, Occurrence) et%s 1 4 et%s 3 12 ¤%& 1 0