You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If all items are lists, concatenate them with list mode. concat([1, 2], [3, 4]) -> [1, 2, 3, 4]
If there exists any item that is not a list, use string concatenation mode: concat('a', 'b', 1, 2) -> 'ab12' concat('a', [1, 2]) -> aSystem.Collections.Generic.List 1[System.Object] // unreadable, best to avoid
If null exists, skip it concat([1, 2], null) -> [1, 2] concat('a', 1, null) -> 'a1'
concat
:If all items are lists, concatenate them with list mode.
concat([1, 2], [3, 4])
->[1, 2, 3, 4]
If there exists any item that is not a list, use string concatenation mode:
concat('a', 'b', 1, 2)
->'ab12'
concat('a', [1, 2])
->aSystem.Collections.Generic.List 1[System.Object]
// unreadable, best to avoidIf null exists, skip it
concat([1, 2], null)
->[1, 2]
concat('a', 1, null)
->'a1'
issue link: #4014
Changed projects
The text was updated successfully, but these errors were encountered: