$Lstr Words: Difference between revisions
m (1 revision) |
m (1 revision) |
||
Line 2: | Line 2: | ||
<span class="pageSubtitle">Return the number of words in a long string</span> | <span class="pageSubtitle">Return the number of words in a long string</span> | ||
<p class="warning">Most Sirius $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for | <p class="warning">Most Sirius $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for $Lstr_Words is <var>[[WordCount (String function)|WordCount]]</var>. Or, you may find the features of the [[StringTokenizer class|StringTokenizer]] to be more helpful.</p> | ||
This function takes a string or longstring input and returns the number of words in the long string. | This function takes a string or longstring input and returns the number of words in the long string. |
Revision as of 18:12, 19 October 2012
Return the number of words in a long string
Most Sirius $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for $Lstr_Words is WordCount. Or, you may find the features of the StringTokenizer to be more helpful.
This function takes a string or longstring input and returns the number of words in the long string.
The $Lstr_Words function accepts two arguments and returns a string result.
The first argument is an arbitrary string or longstring. This is a required argument.
The second argument is a string containing from 1 to 255 characters which are the delimiters for the longstring. This is an optional argument and defaults to a blank.
Syntax
<section begin="syntax" /> %RESULT = $Lstr_Words(longstring, delims) <section end="syntax" />
For example, the following statement sets %RES to 8:
%RES = $Lstr_Words('Picture yourself in a boat on a river')
This statement sets %RES to 7:
%RES = $Lstr_Words('Picture yourself in a boat on a river', 'a ')
$Lstr_Words is only available in Sirius Mods Version 6.5 and later.
See also
- Word - Select word from list of words
- Words - Sublist of list of words
- WordCount - Count words in list
- WordNumberIn and WordNumberOf - Word number of "needle" word within "haystack" list of words