WordCount (String function): Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
m (→See also) |
||
Line 31: | Line 31: | ||
<ul> | <ul> | ||
<li>[[List of StringTokenizer methods]] | <li>[[List of StringTokenizer methods]] | ||
<li><var>[[Words (String function)|Words]]</var> | <li><var>[[Words (String function)|Words]]</var>, which produces a word sublist from a list of words | ||
<li><var>[[Word (String function)|Word]]</var>, which selects a word from a list of words | <li><var>[[Word (String function)|Word]]</var>, which selects a word from a list of words | ||
<li><var>[[WordNumberIn and WordNumberOf (String functions)|WordNumberIn and WordNumberOf]]</var>, which returns the word number of a "needle" word within a "haystack" list of words | <li><var>[[WordNumberIn and WordNumberOf (String functions)|WordNumberIn and WordNumberOf]]</var>, which returns the word number of a "needle" word within a "haystack" list of words |
Revision as of 18:31, 21 March 2012
Count words in list (String class)
[Introduced in Sirius Mods 7.9]
Note that processing a string of words may be better accomplished with the StringTokenizer class.
Syntax
%number = string:WordCount[( [Spaces= string])]
Syntax terms
%number | WordCount returns the number of words in the string method object. |
---|---|
string | The list of words to be counted. |
Spaces | A set of "whitespace" characters, that is, characters that separate words. The default is the blank character. If the null string is provided, the blank character is used as the whitespace character. |
Usage notes
Examples
The following fragment:
PrintText {~="I'd like to buy the world a joke":WordCount}
produces the following result:
"I'd like to buy the world a joke":WordCount=8
See also
- List of StringTokenizer methods
- Words, which produces a word sublist from a list of words
- Word, which selects a word from a list of words
- WordNumberIn and WordNumberOf, which returns the word number of a "needle" word within a "haystack" list of words