Framework:JOIN: Difference between revisions
From CoPlanner 10
Jump to navigationJump to search
No edit summary |
No edit summary |
||
| (One intermediate revision by the same user not shown) | |||
| Line 4: | Line 4: | ||
Concatenates two strings. | Concatenates two strings. | ||
{| class="wikitable" width="80%" | {| class="wikitable" width="80%" | ||
| Line 14: | Line 13: | ||
|String | |String | ||
|} | |} | ||
This function belongs to [[:Category:Functions_-_client-side|client-side functions]]. | |||
==Result== | ==Result== | ||
| Line 24: | Line 24: | ||
__NOEDITSECTION__ | __NOEDITSECTION__ | ||
[[Category:Functions|JOIN]] | |||
[[Category:Functions - client-side|JOIN]] | [[Category:Functions - client-side|JOIN]] | ||
[[de:Framework:JOIN]] | [[de:Framework:JOIN]] | ||
Latest revision as of 08:50, 24 May 2012
Function
JOIN(<StringExpressions>)
Concatenates two strings.
| Parameter | Description |
| StringExpressions | String |
This function belongs to client-side functions.
Result
Returns a string.
Example
JOIN('This is a ' + 'text')
Result: This is a text