PositionIn and PositionOf (String functions)

From m204wiki
Jump to navigation Jump to search

The position of one string inside another (String class)


The PositionIn and PositionOf functions return the numeric position of the first occurrence of one string inside another. The difference between the two methods is that for PositionIn, the method object string is located in the first argument string, whereas for PositionOf, the first argument string is located in the method object string. Which is more convenient to use will be application dependent.

Syntax

%position = string:PositionIn( haystack, [Start= number])

%position = string:PositionOf( needle, [Start= number])

Syntax terms

%position A variable to receive the position of the first occurrence of the needle string in the haystack string, starting at the implicit or explicit starting position. If needle is not found in haystack or needle is the null string, %position is set to 0.
string The method object string. Depending upon whether the PositionIn or PositionOf method is being used, string may be either the:
  • search target needle, when called as PositionIn
  • the search space haystack, when called as PositionOf
haystack The search space string in which the search target needle is to be located.
needle The search target string to be located in the search space haystack string.
Start An optional, but name required, number specifying the position in the search space haystack string at which to start searching for the search target needle string. Start defaults to 1, meaning that the search begins at the first character in haystack.

Usage notes

  • The start position must be a positive number. A zero or negative number results in request cancellation. Specifying a start position greater than the length of (haystack plus one minus the length of needle) returns a zero, because there are not enough characters in haystack to satisfy the search.
  • PositionIn / PositionOf do exactly the same thing. The only difference between them is that in PositionOf, the haystack is the method object string and the needle is the first argument. In PositionIn, these roles are reversed: the needle is the method object string and the haystack is the first argument. Which method is preferable will depend on the application, and, in many cases, it will be quite arbitrary which one is used.
  • PositionIn / PositionOf are the object-oriented equivalents of the User Language $Index function.
  • PositionIn / PositionOf are available as of Sirius Mods Version 7.2.

Examples

  1. If %s contains This is a test, the following statements

    printText {%s:positionOf('is')} printText {%s:positionOf('is', start=4)} printText {%s:positionOf('is', start=7)}

    will display

    3 6 0

  2. If %s contains ver, the following statements

    printText {%s:positionIn('Never say never')} printText {%s:positionIn('Never say never', start=4)} printText {%s:positionIn('Never say never', start=14)}

    will display

    3 13 0

See also