Framework:JOIN: Difference between revisions
From CoPlanner 10
Jump to navigationJump to search
No edit summary |
No edit summary |
||
| (2 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
==[[Framework:Functions|Function]]== | ==[[Framework:Functions|Function]]== | ||
JOIN(<StringExpressions>) | <span {{CoPFormel}}>JOIN(<StringExpressions>)</span> | ||
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 19: | Line 19: | ||
==Example== | ==Example== | ||
JOIN('This is a ' + 'text') <br> | <span {{CoPFormel}}>JOIN('This is a ' + 'text')</span> <br> | ||
Result: This is a text | Result: This is a text | ||
__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