Core Function LCWords
From Sputnik Wiki
(Difference between revisions)
UberFoX (Talk | contribs)
(Created page with "<pre> LCWords( <expression> ) </pre> === Description === Lower Cases first letter of each word in string. === Parameters === ==== expression ==== The string to use. === Re...")
Newer edit →
(Created page with "<pre> LCWords( <expression> ) </pre> === Description === Lower Cases first letter of each word in string. === Parameters === ==== expression ==== The string to use. === Re...")
Newer edit →
Revision as of 19:10, 1 December 2011
LCWords( <expression> )
Contents |
Description
Lower Cases first letter of each word in string.
Parameters
expression
The string to use.
Return Value
Success: Returns new string.
Failure: Returns old string.
Remarks
None.
Example
$str = "The Quick Brown Fox"; MsgBox( LCWords($str) );