From e5b4770b9d3ee8c333c2b124ea68efaa9022edf6 Mon Sep 17 00:00:00 2001 From: Maria Shaposhnikova <38249778+MariaShaposhnikova@users.noreply.github.com> Date: Tue, 8 Sep 2026 12:36:59 +0200 Subject: [PATCH 1/2] Update string-concatenation.md with a new example --- .../refguide/modeling/application-logic/string-concatenation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/refguide/modeling/application-logic/string-concatenation.md b/content/en/docs/refguide/modeling/application-logic/string-concatenation.md index a4c322496b8..ec95a583fec 100644 --- a/content/en/docs/refguide/modeling/application-logic/string-concatenation.md +++ b/content/en/docs/refguide/modeling/application-logic/string-concatenation.md @@ -12,7 +12,7 @@ aliases: Sometimes, you might need to concatenate some text together in your app. Common cases are when you want to assemble the full name of a person based on the first and last name. -Whenever you want to paste multiple strings attributes together, you want to make sure that the text looks good in all cases. For example, you do not want "firstname + middlename + lastname" to be printed as "John null Doe" because the middle name is empty. +Whenever you want to paste multiple strings attributes together, you want to make sure that the text looks good in all cases. For example, you do not want "firstname + ' ' + middlename + ' ' + lastname" to be printed as "John Doe" with two spaces in-between the first and last name because the middle name is empty. To understand what to look out for when concatenating strings, it is important to be aware of the three states a string can be in: From 533c5c1233a881618b35d3a7ed7585135ee6046e Mon Sep 17 00:00:00 2001 From: Maria Shaposhnikova <38249778+MariaShaposhnikova@users.noreply.github.com> Date: Wed, 9 Sep 2026 11:57:20 +0200 Subject: [PATCH 2/2] Apply suggestion from @MarkvanMents Co-authored-by: Mark van Ments <35492184+MarkvanMents@users.noreply.github.com> --- .../refguide/modeling/application-logic/string-concatenation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/refguide/modeling/application-logic/string-concatenation.md b/content/en/docs/refguide/modeling/application-logic/string-concatenation.md index ec95a583fec..cbc071c912f 100644 --- a/content/en/docs/refguide/modeling/application-logic/string-concatenation.md +++ b/content/en/docs/refguide/modeling/application-logic/string-concatenation.md @@ -12,7 +12,7 @@ aliases: Sometimes, you might need to concatenate some text together in your app. Common cases are when you want to assemble the full name of a person based on the first and last name. -Whenever you want to paste multiple strings attributes together, you want to make sure that the text looks good in all cases. For example, you do not want "firstname + ' ' + middlename + ' ' + lastname" to be printed as "John Doe" with two spaces in-between the first and last name because the middle name is empty. +Whenever you want to paste multiple string attributes together, you want to make sure that the text looks good in all cases. For example, you do not want "firstname + ' ' + middlename + ' ' + lastname" to be printed as "John Doe" with two spaces in-between the first and last name because the middle name is empty. To understand what to look out for when concatenating strings, it is important to be aware of the three states a string can be in: