Status
Tech review

Style guide



Short description

Returns a text 

Output




This function returns a text with a comma-separated list of decimal representation of the numeric values in l.



 toString(number list l) #Output: Text



Parser expressionDescription


toString([1, 2, 3, 4.0])


This example returns the following text: "1, 2, 3, 4"



Parameters used in this function

ParameterInput (data type)Description
l

Any given number list.



This function returns a




This function returns a text with a comma-separated list of issue keys.


toString(issue list l) #Output: Text



Parser expressionDescription


toString(subtasks())


This example returns "CRM-5, CRM-6 ", being CRM-5 and CRM-6 the keys of current issue's sub-tasks.



Parameters used in this function

ParameterInput (data type)Description
l

A given issue list.



This function returns a




This function returns a text with a list of issue keys separated by parameter separator.


toString(issue list l, string separator) #Output: Text



Parser expressionDescription


 toString(subtasks(), " " )


This example returns "CRM-5, CRM-6 ", being CRM-5 and CRM-6 the keys of current issue's sub-tasks.



Parameters used in this function

ParameterInput (data type)Description
l

A given issue list.
separator

Parameter description.



This function returns a




This function returns a text with a comma-separated list of decimal representations of the numeric values in l, with the number of characters in the decimal part specified by parameter decimals.


 toString(number list l, number decimals) #Output: Text



Parser expressionDescription


toString([1.123, 2.452, 3.64612], 2)


This example returns the following text: "1.12, 2.45, 3.65"



Parameters used in this function

ParameterInput (data type)Description
l

A given number list.
decimals

Parameter description.



This function returns a




This function returns a text with a list of decimal representations of the numeric values in l, with the number of characters in the decimal part specified by parameter decimals and separated by parameter separator.


 toString(number list l, number decimals, text separator) #Output: Text



Parser expressionDescription


toString([1.123, 2.452, 3.64612], 2, " : ")


This example returns the following text: "1.12 : 2.45 : 3.65"



Parameters used in this function

ParameterInput (data type)Description
l

A given number list.
decimals

Parameter description.
separator

Parameter description.



This function returns a




This function returns a text with the decimal representation of the numeric value in n. Numeric value of a Date_Time field is number of milliseconds elapsed since January 1, 1970, 00:00:00 GMT.


 toString(number n) #Output: Text



Parser expressionDescription


toString(3.141592)


This example returns the following text: "3.141592"



Parameters used in this function

ParameterInput (data type)Description
n

Any given number.



This function returns a




This function returns a text with the decimal representation of the numeric value in n limiting the fractional part to the number of digits in parameter decimals.


 toString(number n, number decimals) #Output: Text



Parser expressionDescription


toString(3.141592, 2)


This example returns the following text: "3.14"



Parameters used in this function

ParameterInput (data type)Description
n

Any given number.
decimals

Any given number smaller or equal than n.



This function returns a




This function returns a text with a comma-separated list of text values in l.


 toString(string list l) #Output: Text



Parser expressionDescription


toString(["Hello", " ", "world", "!"])


This example returns the following text: "Hello, , world, !"



Parameters used in this function

ParameterInput (data type)Description
l

Any given text list.



This function returns a




This function returns a text from the list of text values in l separated by parameter separator.


toString(text list l, text separator) #Output: Text



Parser expressionDescription


toString(["blue", "red", "green"], "; ")


This example returns the following text: " blue; red; green "



Parameters used in this function

ParameterInput (data type)Description
l

Any given text list.
seperator

Parameter description.



This function returns a