Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Panel

TSL format [[[expression{format}]]]

There are two different types of formatting available in TSL, number formats and date formats. Both formats are applied to attributes or expressions in the same way.


Syntax


Code Block
[[[expression{format}]]]


Inputs

  • expression: is a number or date

  • format: is the number or date formatting


Numbers

In TSL, you can use number formats to change the appearance of numbers, without changing the number behind the appearance. The number format you apply does not affect the actual value. In this context a number can be any of the following basetypes; number, integer, currency or percentage.

The number formats used in TSL are common Java decimal formats. The most commonly used formatting symbols are listed below. For a complete documentation we refer to the online java documentation that is available at https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/text/DecimalFormat.html.


SymbolNameMeaning
0Digit_zerodisplays insignificant zeros if a number has fewer digits than there are zeros in the format
#Digitdisplays only significant digits and does not display insignificant zeros
,Thousand separatorThe integer portion of a number is often split into groups by a grouping separator. Western numbers generally separate numbers into thousands, or groups of 3 digits. However, other styles exist.
.Decimal separatorThe separator between integer and fractional parts of a number
-Minus signSign to specify a negative value
;Sub pattern separatorSeparates formatting for positive and negative numbers
%Percentage signMultiply by 100 and show as percentage
¤(ALT_0164)Currency signUse localized currency symbol (for € sign simply use ALT_0128)
Escape characterUse special characters as ordinary characters


These symbols are used to create a format pattern. How this pattern is created is shown in the examples below.

To use the symbols as ordinary characters in your expression use the escape character.


UI Text Box

Note that the formatting depends on the language that is used. This means that when you specify a thousand separator , in the Dutch language this is outputted as a .


Examples

Format patternNumberResult (with English language)Result (with Dutch language)
{0000000000}9813756.19800098137560009813756
{##########}9813756.19898137569813756
{#,###.##}9813756.1989,813,756.29.813.756,2
{#,-##0.00}-9813756.1989,813,756.20-9.813.756,20-
{-#,##0.00}9813756.198-9,813,756.20-9.813.756,20
{#,##0.00;-#,##0.00}9813756.1989,813,756.209.813.756,20
{#,##0.00;-#,##0.00}-9813756.198-9,813,756.20-9.813.756,20
{#,##0.## %}0.880 %80 %
{% #,##0.##}0.8% 80% 80
{¤ #,##0.00}9813756.198£ 9,813,756.20€ 9.813.756,20
{#,##0.00 ¤}9813756.1989,813,756.20 £9.813.756,20 €
{#,##0.00 €}9813756.1989,813,756.20 €9.813.756,20 €
{€ #,##0.00}9813756.198€ 9,813,756.20€ 9.813.756,20
{‘#’#}123#123#123


Dates

In TSL, you can use date formats to change the appearance of dates, without changing the date behind the appearance. The date format you apply does not affect the actual value.

Include Page
Date and time formats or patterns
Date and time formats or patterns

These symbols are used to create a format pattern.


Examples

Format patternExample result
TODAY{dd-MM-yyyy}11-04-2019
NOW{dd-MM-yyyyTHH:mm:ss.SSS}11-04-2019T11:06:56.330

NOW{hh:mm a}

09:40 AM

Back to top