Ask AI
Skip to main content

Uppercase

Function: Uppercase

This function allows you to easily convert any piece of text into its uppercase equivalent. It's perfect for standardizing text, preparing data for specific systems, or simply making text stand out.

Input

  • Text: The piece of text you want to convert to all uppercase characters. This input is required.

Output

  • Result: A new variable will be created, containing the uppercase version of your input text. By default, this variable will be named "Result", but you can usually specify a different name in the platform's interface if needed. The value stored in this variable will be a piece of text (STRING).

Execution Flow

Real-Life Examples

Here are a few ways you can use the Uppercase function in your applications:

  1. Standardizing User Input:

    • Inputs:
      • Text: "new york"
    • Result: A new variable named "Result" (or your chosen name) will be created, containing the value "NEW YORK". This ensures all city names are stored consistently.
  2. Creating Unique Identifiers:

    • Inputs:
      • Text: "product_code_xyz"
    • Result: A new variable named "Result" will be created, containing the value "PRODUCT_CODE_XYZ". This can be useful for generating case-sensitive IDs or labels.
  3. Highlighting Important Information:

    • Inputs:
      • Text: "urgent action required"
    • Result: A new variable named "Result" will be created, containing the value "URGENT ACTION REQUIRED". This can be used to display critical messages prominently in your application.