Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

Below mentioned are the action keywords with their example usage.

Action

Parameters

Example Usage

changeToUpperCaseAndStore

Web, Mobile


To convert the string into uppercase and store into some variable.

Param 1 : String to convert
Param 2 : Variable name to store the converted value

Example :

changeToUpperCaseAndStore : <String : BQURIOUS> <In Variable : bqVariable>

Converts BQURIOUS into lower case and store into variable bqVariable

changeToLowerCaseAndStore

Web, Mobile


To convert the string into lowercase and store into some variable.

Param 1 : String to convert
Param 2 : Variable name to store the converted value

Example :

changeToLowerCaseAndStore : <String : bqurious> <In Variable : bqVariable>

Converts bqurious into upper case and store into variable bqVariable

concatAndCopyString

Web, Mobile


To concatenate two strings (mentioned in Parameter 1 and Parameter 2) and store the result in the specified variable(mentioned in Variable 3).

Param 1 : First string to concat
Param 2 : Second string to concat
Param 3 : Variable name to store the concatenated value

Example :

concatAndCopyString : <First String : Welcome > <Second String : to Bqurious> <In Variable : bqVariable>

Concatenates string Welcome & to Bqurious then stores the resultant value in variable bqVariable.

  • No labels