$ListFind

From m204wiki
Revision as of 22:18, 8 February 2011 by 198.242.244.47 (talk) (Created page with "{{DISPLAYTITLE:$ListFind}} <span class="pageSubtitle"><section begin="desc" />Find string in $list<section end="desc" /></span> <p class="warning">Most Sirius $functions have be...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

<section begin="desc" />Find string in $list<section end="desc" />

Most Sirius $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for the $ListFind function is to be entered.


This function locates a $list item that exactly matches a specified string.

The $ListFind function accepts three arguments and returns the item number of the $list item that matches the string or an error code. It is a callable $function (:hdref refid=callfun.).

The first argument is the identifier of the $list in which a string is to be located. This is a required argument.

The second argument is the string to be matched. This is a required argument.

The third argument is a number that indicates the item number at which the search is to begin. If this argument is not specified searching begins at the first item in the $list.

Syntax

<section begin="syntax" /> [%RESULT =] $ListFind(list_identifier, search_string, - start_item) <section end="syntax" />

$ListFind Function

%RESULT is set either to the item number of the first item in the $list that matches the search criteria, or to a negative number if an error has occurred.

-5 - Required argument not specified -6 - $List identifier invalid -7 - Item number not found in $list -8 - String not found (if $list empty, -7)

$ListFind Error Codes


The difference between $ListFind and $ListLoc is that with $LISTFIND, a $list item must match the search string exactly rather than simply containing the search string. Moreover, $ListFind does not allow specification of a range of columns (or positions) that are to be searched.

Products authorizing $ListFind