Difference between revisions of "Upper"

From MiniScript Wiki
Jump to navigation Jump to search
(Created page with "<c>upper</c> return an upper-case (all capitals) version of a string. See also: lower === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Mea...")
 
 
Line 1: Line 1:
<c>upper</c> return an upper-case (all capitals) version of a string.
+
<c>upper</c> returns an upper-case (all capitals) version of a string.
  
 
See also: [[lower]]
 
See also: [[lower]]

Latest revision as of 03:02, 19 March 2020

upper returns an upper-case (all capitals) version of a string.

See also: lower

Arguments

Parameter Name Default Value Meaning
self string string to upper-case

Usage Notes

upper maybe be called with function syntax or dot syntax.

Example

"Mo Spam".upper	// returns "MO SPAM"