Framework:JOIN: Difference between revisions
From CoPlanner 10
Jump to navigationJump to search
Created page with "==Function== JOIN(<StringExpressions>) Concatenates two strings. {| cellspacing="1" cellpadding="3" width={{{breite|80%}}} border="1" |- | style=bac..." |
No edit summary |
||
| (3 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%" | |||
{| | |- {{Tabellentitel}} | ||
|- | | Parameter | ||
| | | Description | ||
| | |||
|- | |- | ||
|StringExpressions | |StringExpressions | ||
|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