$Windex: Difference between revisions
Line 42: | Line 42: | ||
<li>[[List of $functions|Sirius functions]]</li> | <li>[[List of $functions|Sirius functions]]</li> | ||
<li>[[Fast/Unload User Language Interface]]</li> | <li>[[Fast/Unload User Language Interface]]</li> | ||
<li>[ | <li>[[Media:JoclrNew.pdf|Janus Open Client]]</li> | ||
<li>[ | <li>[[Media:JosrvrNew.pdf|Janus Open Server]]</li> | ||
<li>[[Janus Sockets]]</li> | <li>[[Janus Sockets]]</li> | ||
<li>[[Janus Web Server]]</li> | <li>[[Janus Web Server]]</li> | ||
<li>Japanese functions</li> | <li>Japanese functions</li> | ||
<li>[ | <li>[[Media:SirfieldNew.pdf|Sir2000 Field Migration Facility]]</li> | ||
</ul> | </ul> | ||
[[Category:$Functions|$Windex]] | [[Category:$Functions|$Windex]] |
Revision as of 22:19, 19 February 2015
Word number of first occurrence of word in phrase
Note: Most Sirius $functions have been deprecated in favor of Object Oriented methods. The recommended OO replacement function for $Windex is WordNumberIn. However, unlike $Windex, WordNumberIn is Longstring capable (like all OO methods), so do not replace WordNumberIn with $Windex. Note also that in some cases the StringTokenizer may be a better OO solution.
$Windex finds the first occurrence of a word in a phrase.
The $Windex function accepts three arguments and returns a numeric result that is the word number in the first argument string of the the second argument word.
The first argument is an arbitrary string.
The second argument is word that is to be located in the first argument. If the second argument string is not found, $Windex returns a 0.
The third argument is a delimiter that separates words in the first argument string. This is an optional argument and defaults to blank.
Syntax
%NUM = $Windex(string, word, [delim])
%NUM is either a word number or 0.
Examples
For example, this statement sets %JUNK to 3:
%JUNK = $Windex('BOB CAROL TED ALICE', 'TED')
This statement sets %JUNK to 0:
%JUNK = $Windex('BOB CAROL TED ALICE', 'ROGER')
This statement sets %JUNK to 2:
%JUNK = $Windex('A WORD/OR TWO/BEFORE/I/GO', 'OR TWO', '/')