$Sir_Wild

From m204wiki
Revision as of 17:36, 28 January 2011 by 198.242.244.47 (talk) (Created page with "{{DISPLAYTITLE:$Sir_Wild}} <span class="pageSubtitle"><section begin="desc" />Test string against a wildcard string<section end="desc" /></span> <p class="warning">Most Sirius $...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

<section begin="desc" />Test string against a wildcard string<section end="desc" />

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


$Sir_Wild indicates whether the one string matches a Sirius-style pattern where a "*" matches any set of characters, a "?" matches any single character and a """ indicates that the following character is to be treated as a literal even if it is one of the three special wildcard characters, that is "*", "?" or """. $Sir_Wild takes two string arguments and returns either a 0 or 1.

The first argument is the string to be tested for a match. This is an optional argument and defaults to null.

The second argument is the string, possibly containing wildcards, against which the first argument is to be tested. This is an optional argument and defaults to null.

Syntax

<section begin="syntax" /> %RC = $Sir_Wild(string, wildcard) <section end="syntax" />

$Sir_Wild Function

%RC is set to 0 or 1.


$Sir_Wild returns either a 1 indicating that the first string matches the second or 0 otherwise. For example, this returns 1:

$Sir_Wild('Ahab', 'A*')


This returns 0:

$Sir_Wild('Starbuck', 'A*')


This returns 1:

$Sir_Wild('*LOOK', '"*LOO?')


$Sir_Wild is new in Version 6.3 of the Sirius Mods.

Products authorizing $Sir_Wild