Skip to main content
CONCAT
Tom Williams avatar
Written by Tom Williams
Updated this week

Type: Function

Function: CONCAT

Syntax: CONCAT(value1, ..., valueN)` or alternatively the shorthand version `"value1" + "value2"

Description: Returns the string concatenation of all provided values.

Sample usage:

  • CONCAT("some_", "word_", "and_number_", 5) => some_word_and_number_5

  • CONCAT("Week number: ", WEEK(created_at)) => Week number: 5 when the item has been created during week number 5.

  • "Master branch: " + IF(base_ref_branch ~ "master", "Yes", "No") returns Master branch: Yes if the pull request targets a branch that contains "master", otherwise returns Master branch: No

Did this answer your question?