إشعار
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تسجيل الدخول أو تغيير الدلائل.
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تغيير الدلائل.
Syntax
List.FindText(list as list, text as text) as list
About
Returns a list of the values from the list list which contained the value text.
Example 1
Find the text values in the list {"a", "b", "ab"} that match "a".
Usage
List.FindText({"a", "b", "ab"}, "a")
Output
{"a", "ab"}