Skip to end of banner
Go to start of banner

toUpper

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 7 Current »

Looking for the documentation on the newest versions of SIL Engine and the Simple Issue Language for Jira 8? Click here and leave these dusty old pages behind!

Availability

This routine is available starting with SIL Engine™ 2.5 for Jira 5.x.

Syntax

toUpper(string)

Description

Returns the string only with upper case letters.

Returns the given string that has it's letters converted to upper case. If the string contains other characters than letters the chars that are not letters will not be converted.


Parameters

Parameter name

Type

Required

Description

string

string

Yes

Specifies a character expression that will be converted to upper case.

Return type

string

Example

Example 1

wret = toUpper("fOoBaR");
print(wret);

Prints "FOOBAR"

Example 2

wret = toUpper("AbC2w&345f.ff");
print(wret);

Prints "ABC2W&345F.FF"


See also


  • No labels