Text - Convert case

Declaration

<AMTEXT ACTIVITY="convert_case" TEXT="text" RESULTVARIABLE="text" CASE="text (options)" />

Related Topics   

Description

Converts the specified text to upper case or lower case letters and populates a variable with results.

Practical Usage

Commonly used to change the case of selected portions of text. You can use it to change text to be all lower case, all upper case or apply title case.

Parameters

General

Property

Type

Required

Default

Markup

Description

Text to Convert

Text

Yes

(Empty)

TEXT="convert to upper case"

The target text to convert. As with every text parameter, if the data you wish to convert is contained in a variable, simply enter the variable name surrounded by percentage signs to resolve it to it's contents at runtime (i.e. %variableName%).

Convert

Text (options)

No

Upper Case

  1. CASE="upper_case"

  2. CASE="proper_case"

  3. CASE="lower_case"

The case to convert the text to. The available options are:

  • To upper case (default) - The target text will be converted to "UPPER CASE".

  • To proper upper case (first characters only) - The target text will be converted to "Proper Upper Case".

  • To lower case - The target text will be converted to "lower case".

Populate variable with result

Text

Yes

(Empty)

RESULTVARIABLE="varname"

The name of an existing variable in which to populate the newly converted text.

 

Description

Error Causes

On Error

Example

NOTE:
  • The sample AML code below can be copied and pasted directly into the Steps Panel of the Task Builder.
  • Parameters containing user credentials, files, file paths, and/or other information specific to the task must be customized before the sample code can run successfully.

description

This task demonstrates Automate's ability to convert text to upper case, lower case and proper sentence case.

 

<AMVARIABLE NAME="theVar" />

<AMSHOWDIALOG ACTIVITY="input" MESSAGE="This task demonstrates Automate's ability to convert text to upper case, lower case and proper sentence case. " DEFAULTVALUE="enter a string of text here." RESULTVARIABLE="theVar" WINDOWTITLE="Text to convert" />

<AMTEXT ACTIVITY="convert_case" TEXT="%theVar%" RESULTVARIABLE="theVar" />

<AMSHOWDIALOG WINDOWTITLE="The text converted to upper case.">%theVar%</AMSHOWDIALOG>

<AMTEXT ACTIVITY="convert_case" TEXT="%theVar%" RESULTVARIABLE="theVar" CASE="lower_case" />

<AMSHOWDIALOG WINDOWTITLE="The text converted to lower case.">%theVar%</AMSHOWDIALOG>

<AMTEXT ACTIVITY="convert_case" TEXT="%theVar%" RESULTVARIABLE="theVar" CASE="proper_case" />

<AMSHOWDIALOG WINDOWTITLE="The text converted to proper sentence case.">%theVar%</AMSHOWDIALOG>