forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
Uppercase
angerangel edited this page Mar 20, 2013
·
1 revision
UPPERCASE string /part length
Converts string of characters to uppercase.
UPPERCASE is a native value.
- string -- (modified if series) (any-string! char!)
-
/part -- Limits to a given length or position
- length (number! any-string!)
#SOURCE
uppercase: make native! [ [
"Converts string of characters to uppercase."
string [any-string! char!] "(modified if series)"
/part "Limits to a given length or position"
length [number! any-string!]
] ]