dateTimeToString()

Timezone

This function returns the full timestamp (date and time) of any given date in text form

Bash
dateTimeToString(timestamp, timeZone, language) #Output: Text

Examples

Parser Expression

Description

Bash
dateTimeToString({issue.created}, LOCAL, USER_LANG)

This example could return:

18/May/20 7:52 AM

Additional information

Parameters used in this function

Parameter

Input (data type)

Description

timestamp

number

The parameter must be valid timestamp. Usually this value is retrieved from a field (e.g. due date, created date).

timeZone

timezone

The time zone used for the conversion. 

language

Language

The language used for the conversion.

Output

This function returns a text


Date-time pattern

Variant where you can additionally define a custom date time pattern (see documentation).

Bash
 dateTimeToString(timestamp, dateTimePattern, language) #Output: Text

Examples

Parser expression

Description

Bash
dateTimeToString({issue.created}, "yyyy.MM.dd 'at' HH:mm:ss", USER_LANG)

This example could return:

2020.05.18 at 07:52:02

Additional information

Parameters used in this function

Parameter

Input (data type)

Description

timestamp

number

The parameter must be valid timestamp. Usually this value is retrieved from a field (e.g. due date, created date).

dateTimePattern

text

A Java date time pattern (see documentation).

language

language

The language used for the conversion.

Output

This function returns a text


Date-time pattern timezone

Variant where you can specify a custom format according to the date time pattern and additionally a time zone (see documentation).

Bash
 dateTimeToString(timestamp, dateTimePattern, timeZone, language) #Output: Text

Examples

Parser expression

Description

Bash
dateTimeToString(0, "yyyy.MM.dd 'at' HH:mm:ss", GMT, USER_LANG)

This example returns:

1970.01.01 at 00:00:00

Bash
dateTimeToString(0, "yyyy.MM.dd 'at' HH:mm:ss", MST, USER_LANG)

This example returns:

1969.12.31 at 17:00:00

Additional information

Parameters used in this function

Parameter

Input (data type)

Description

timestamp

number

The parameter must be valid timestamp. Usually this value is retrieved from a field (e.g. due date, created date).

dateTimePattern

text

Java date time pattern (see documentation).

timeZone

timezone

The time zone used for the calculation. 

language

language

The language used for the conversion.

Output

This function returns a text


(books) Use cases and examples