Versions Compared

Key

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

Abstract

This code snippet concatenates two text fields ignoring null values

Logic

Access the text fields, checking for null values and concatenate them

Snippet

Code Block
languagejs
linenumberstrue
textutils.noNull(<First text field>) + "<Delimiter>" + textutils.noNull(<Second text field>)

Placeholders

Placeholder

Description

Example

<First text field>
Accessing the first text field
issue.get("description")
"<Delimiter>"
Delimiter separating the text fields"\n"
<Second text field>
Accessing the second text field
issue.get("summary")

Examples

The output of this code is a String which you could, for example, use in a Groovy expression, to calculate and display the concatenation of two text fields Customer Name and Machine details

Code Block
languagejs
linenumberstrue
textutils.noNull(issue.get("Customer Name")) + textutils.noNull(issue.get("Machine details"))


References

Filter by label (Content by label)
showLabelsfalse
max5
spacesKB
showSpacefalse
sortmodified
reversetrue
typepage
cqllabel = "jmcf-2" and type = "page" and space = "KB"
labelsjmwe-nunjucks jmwe-cloud

...