RPTools

Personal tools
From MapToolDoc

lower

lower() Function

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

Usage

  1. lower(str)
  1. lower(str, numChars)

Example

  1. [r: lower("This Is a Test")]
  2. [r: lower("This Is a Test", 1)]

Returns

  this is a test
  this Is a Test