RPTools

Personal tools
From MapToolDoc

upper

upper() Function

Introduced in version 1.3b48

Returns the upper case version of a string. If the number of characters is not specified then the whole string is converted to upper case.

Usage

  1. upper(str)
  1. upper(str, numChars)

Examples

  1. [r: upper("this Is a Test")]
  2. [r: upper("this Is a Test", 1)]

Returns

  THIS IS A TEST
  This Is a Test