About

The wasWords function returns the number of token-delimited words.

For example:

Say wasSubWord('Search/For/Me', '/')

will output: 3

Code

/*************************************************************************/
/*    Copyright (C) 2015 Wizardry and Steamworks - License: GNU GPLv3    */
/*************************************************************************/
wasWords: procedure /* The number of sub-words delimited by a token.     */
    Parse ARG String,Token
    Parse VAR String Head Interpret(Token) Tail
    If Head ~= '' Then Return 1 + wasWords(Tail,Token)
Return 0

fuss/amiga/arexx/token_delimited_words/words.txt ยท Last modified: 2022/04/19 08:28 by 127.0.0.1

Access website using Tor Access website using i2p Wizardry and Steamworks PGP Key


For the contact, copyright, license, warranty and privacy terms for the usage of this website please see the contact, license, privacy, copyright.