如果给定元素在 Rexx 的列表中,是否有内置函数可以测试?
我找不到一个。另一种方法是遍历列表并手动检查每个元素。
否(除非事情发生了变化);只需遍历列表。
另一种方法是/也有一个查找变量
IE
lookup. = 0 /* not all versions of Rexx support
default initialisation like this */
....
addToList:
parse arg item
numberInList = numberInList + 1
list.numberInList = item
lookup.item = 1
return
然后,您可以通过以下方式检查项目是否在列表中
if lookup.item = 1 then do
......