Locate and LocateUp (Stringlist functions)

From m204wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Locate next/previous Stringlist item that contains a string (Stringlist class)


Both these functions locate a specified string in a Stringlist. The difference between Locate and LocateUp is the direction of the search: Locate searches from the starting point in ascending item number order, while LocateUp searches from the starting point in descending item number order.

Both Locate and LocateUp return the item number of the Stringlist item that matches the input string, or they return 0 to indicate no matching items were found.

Syntax

%itemNum = sl:Locate( string, [[Start=] number], [[StartColumn=] number], - [[EndColumn=] number], [[CaseIndependent=] number], - [[ArbitraryQuote=] number])

%itemNum = sl:LocateUp( string, [[Start=] number], [[StartColumn=] number], - [[EndColumn=] number], [[CaseIndependent=] number], - [[ArbitraryQuote=] number])

Syntax terms

%itemNum A numeric variable which will be set to the item number of the first item in the sl Stringlist that contains the search target string, or it is set to a 0 if no items match the search criterion.
sl A Stringlist object.
string The target string to be located. This is a required argument, and it must be no longer than 255 bytes.
Start A number that indicates the item number at which the search is to begin. This must be between 1 and the number of items in the Stringlist, inclusive. If this argument is not specified:
  • For Locate, searching begins at the first item in the sl Stringlist. Not specifying the starting item number is subtly different from specifying a starting item number of 1 — specifying 1 is an error if the stringlist is empty, while no specification simply returns a 0.
  • For LocateUp, searching begins at the last item in the sl Stringlist.
Under Sirius Mods 8.1 and later, this is a name allowed parameter.
StartColumn A number that specifies the starting column of the range of columns within which the target string is searched for. This is an optional argument, and it defaults to 1.
Under Sirius Mods 8.1 and later, this is a name allowed parameter.
EndColumn A number that specifies the ending column of the range of columns within which the target string is searched for. This is an optional argument, and it defaults to 6124. If either the CaseIndependent or ArbitraryQuote argument has a non-zero numeric value, the width of the searched column range is reduced to a maximum of 256.
Under Sirius Mods 8.1 and later, this is a name allowed parameter.
CaseIndependent An indicator for case-insensitive comparisons. If this argument is a non-zero integer, the string comparisons use sl Stringlist item data translated to uppercase (so the search target string should be passed as an uppercase value). This is an optional argument, and defaults to 0. If set to a non-zero value, the width of the searched column range is reduced to a maximum of 256.
Under Sirius Mods 8.1 and later, this is a name allowed parameter.
ArbitraryQuote An indicator for abitrary quote comparisons. If this argument is a non-zero integer, single (') and double(") quotes are considered matches for each other in the string comparisons. This is an optional argument, and defaults to 0. If set to a non-zero value, the width of the searched column range is reduced to a maximum of 256. This can be useful when searching through procedures that contain code where single and double quotes can be used interchangeably to enclose string literals. Such code includes SOUL, Javascript, and XML (including XSLT).

This parameter, available in Sirius Mods 8.1 and later, is a name allowed parameter.

Usage notes

  • Locate and LocateUp return a 0 if the indicated string is not found, and cancel the request for all other errors.
  • While Stringlist items can be longer than 6124 bytes long, these function will only look for matches in the first 6124 bytes of any Stringlist item.
  • When converting old code from $ListLoc and $ListLup, note: the parameter order of the Locate and LocateUp methods is not the same as the corresponding $function. The $functions have starting position followed by search string. The Locate and LocateUp methods have search string followed by starting position, making them more consistent with other Stringlist methods.

Examples

  1. The following code locates a string in columns 31 through 40 of stringlist %list:

    %num = %list:locate('Eudaemonic', , 31, 40)

  2. The following code locates a string anywhere in a Stringlist %list item, searching backwards starting at item 100.

    %num = %list:locateUp('Vietnamerica', 100)

See also

  • The Find and FindUp functions also search for a target string in a Stringlist, but they find an item only if it is an exact match.
  • The RegexLocate and RegexLocateUp functions also search for a matching item in a Stringlist, but they find an item that matches a specifed regular expression.