Convert Case Action

Description

Used for text manipulation.

Declaration

<AMTEXTCONVERTCASE CASE="text [options]" TEXT="text" RESULTVARIABLE="text [variable name]">

Example

<AMVARIABLE NAME="test">hello</AMVARIABLE>
<AMTEXTCONVERTCASE TEXT="%test%text" RESULTVARIABLE="test">
<AMMESSAGEBOX>%test%</AMMESSAGEBOX>

General Tab Parameters

Text to convert: Specifies target text to retrieve the subtext from.  

Text, Required
MARKUP: TEXT="My Name is Joe"

Convert: Specifies the case to convert the text to.

  • upper_case: The text will be converted to UPPER CASE

  • lower_case: The text will be converted to lower case

text [options], Optional Default is upper_case
MARKUP: CASE="upper_case"

Populate variable with result: Specifies the variable to receive the new value.

Text [variable name], Required
MARKUP: RESULTVARIABLE="varname"