Comments - Cloud - 8.0

Talend Data Shaping Language Reference Guide

Version
Cloud
8.0
Language
English
Product
Talend Cloud
Module
Data Shaping Language
Content
Design and Development
Last publication date
2023-11-23

Comments can be inserted in expressions.

You can use two types of comments:
  • Single-line comments: the comment starts with // and ends with a new line.
    date = toDate('2021-04-08') //using function to cast string as date
  • Multiple-lines comments: the comment starts with /* and ends with */.
    /* this the first line in the comment
    this is another line in the same comment
    and this is the last line of the comment */