Locate and LocateUp (Regex function)

From m204wiki
Jump to navigation Jump to search

Find next item in Stringlist that matches a regex (Regex class)


These functions search a Stringlist for an item that matches the regular expression in the Regex object. Locate searches forward (low to high item number) in the Stringlist while LocateUp searches backward. These provide similary functionality to RegexLocate and RegexLocateUp.

Syntax

[%itemNum =] regex:Locate( sl, [startItem], [StartCol= number], - [EndCol= number])

[%itemNum =] regex:LocateUp( sl, [startItem], [StartCol= number], - [EndCol= number])

Syntax terms

%itemNumThe first matching item number. If no items match, 0 (zero) is returned.
regex The Regex object
sl The Stringlist to be searched
startItem The item number at which to start searching. If 0 (the default), searching begins from the first item for Locate and the last item for LocateUp. Otherwise, startItem must be a number from 1 to the number of items in the Stringlist, inclusive.
StartCol The starting column number (position in stringlist items) to which to limit the match. The default value of this argument is 1. This value must be greater than or equal to 1 and less than or equal to 6124.
EndCol The ending column number (position in stringlist items) to which to limit the match. There is no default value of this argument so essentially matching is done to the end of each item. This value must be greater than or equal to StartCol and less than or equal to 6124.

Usage notes

  • These functions have identical functionality to the ][RegexLocate and RegexLocateUp (Stringlist functions)|Stringlist RegexLocate and RegexLocateUp]] functions.
  • Invalid values for parameters (such as start column greater than end column) result in request cancellation.
  • If EndCol was not specified and a Stringlist item longer than 6124 bytes is encountered, the request is canceled.

Examples

The following example removes all items that match regular expression "(foo|fu)bar" (case insensitive) from a Stringlist:

%num is float %regex is object regex %sl is object stringlist ... %regex = new("(fu|foo)bar", options="i") %num = 1 repeat while %num le %sl:count %num = %regex:locate(%sl, %num) if %num eq 0 then loop end; end if %sl:removeItem(%num) end repeat

See also