REBOL 3 Docs Guide Concepts Functions Datatypes Errors
  TOC < Back Next >   Updated: 3-Aug-2010 Edit History  

REBOL 3 Functions: uppercase

uppercase  string  /part  length

Converts string of characters to uppercase. (Modifies)

Arguments:

string [any-string! char!]

Refinements:

/part - Limits to a given length or position

length [number! any-string!]

See also:

lowercase   trim  

Description

The series passed to this function is modified as a result.

print uppercase "abcdef"
ABCDEF
print uppercase/part "abcdef" 1
Abcdef


  TOC < Back Next > REBOL.com - WIP Wiki Feedback Admin