lowercase_of_characters

This function is used to convert a text fragment to lowercase. The lowercase_of_characters function ignores word processor instructions and correctly converts Unicode characters.

lowercase_of_characters (complete_text; starting_position; length )

The function has 3 parameters:

  1. complete_text, type TEXT; contains the text of which a part has to be converted to lowercase.
  2. starting_position, type NUMBER; contains the starting position in the text from which characters have to be converted.
  3. length, type NUMBER; contains the number of characters that need to be converted

The result of the function is type TEXT; the complete text with the specified fragment converted to lowercase.

Example

@( lowercase_of_characters ( "THIS IS AN Example"; 6; 2 ) ) 

Result: THIS is AN Example