How to add your knowledge

stringUpper()

    Table of contents
    1. 1. Synopsis
    2. 2. Syntax
    3. 3. Example 1

    Synopsis

    Returns a string with all alphabetic characters in the given string converted to upper case.

    Syntax

    stringUpper ( str As String ) As String 
    Argument Type Description
    str String a string of mixed-case characters

    Example 1

    Intent >stringUpper("Four Score and Seven Years Ago...")
    --> "FOUR SCORE AND SEVEN YEARS AGO..."