Rebol Programming/lowercase
Appearance
USAGE:
[edit | edit source]LOWERCASE string /part range
DESCRIPTION:
[edit | edit source]Converts string of characters to lowercase.
LOWERCASE is a native value.
ARGUMENTS:
[edit | edit source]- string -- (Type: any-string char)
REFINEMENTS:
[edit | edit source]- /part -- Limits to a given length or position.
- range -- (Type: integer any-string)
SOURCE CODE
[edit | edit source]lowercase: native[ "Converts string of characters to lowercase." string [any-string! char!] /part "Limits to a given length or position." range [integer! any-string!] ]