List.FindTextList.FindText
構文Syntax
List.FindText(list as list, text as text) as list
バージョン情報About
値 text
が含まれるリスト list
から値のリストを返します。Returns a list of the values from the list list
which contained the value text
.
例 1Example 1
リスト {"a", "b", "ab"} 内の、"a" に一致するテキスト値を求めます。Find the text values in the list {"a", "b", "ab"} that match "a".
List.FindText({"a", "b", "ab"}, "a")
aa |
abab |