Framework:Substring: Difference between revisions
From CoPlanner 11
Jump to navigationJump to search
Created page with "==Function== SUBSTRING(<String>,<Start>,<Length>) {| cellspacing="1" cellpadding="3" width={{{breite|80%}}} border="1" |- | style=background-color:#f..." |
No edit summary |
||
| (4 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
==[[Framework:Functions|Function]]== | ==[[Framework:Functions|Function]]== | ||
SUBSTRING(<String>,<Start>,<Length>) | <span {{CoPFormel}}>SUBSTRING(<String>,<Start>,<Length>)</span> | ||
{| class="wikitable" width="80%" | |||
{| | |-{{Tabellentitel}} | ||
|- | | Parameter | ||
| | | Description | ||
| | |||
|- | |- | ||
|String | |String | ||
| Line 18: | Line 17: | ||
|Is an integer that specifies the length of the substring (the number of characters or bytes to return). | |Is an integer that specifies the length of the substring (the number of characters or bytes to return). | ||
|} | |} | ||
This function belongs to [[:Category:Functions_-_client-side|client-side functions]]. | |||
==Result== | ==Result== | ||
Returns the substring of the first argument starting at the position specified in the second argument and the length specified in the third argument. | Returns the substring of the first argument starting at the position specified in the second argument and the length specified in the third argument. | ||
== | ==Example== | ||
SUBSTRING('@Session_JP_DimJahr_Von@',1,4) | <span {{CoPFormel}}>SUBSTRING('@Session_JP_DimJahr_Von@',1,4)</span> | ||
__NOEDITSECTION__ | __NOEDITSECTION__ | ||
[[Category:Functions|Substring]] | |||
[[Category:Functions - client-side|Substring]] | [[Category:Functions - client-side|Substring]] | ||
[[de:Framework:Substring]] | [[de:Framework:Substring]] | ||
Latest revision as of 08:52, 24 May 2012
Function
SUBSTRING(<String>,<Start>,<Length>)
| Parameter | Description |
| String | Is a character string |
| Start | Is an integer that specifies where the substring begins. |
| Length | Is an integer that specifies the length of the substring (the number of characters or bytes to return). |
This function belongs to client-side functions.
Result
Returns the substring of the first argument starting at the position specified in the second argument and the length specified in the third argument.
Example
SUBSTRING('@Session_JP_DimJahr_Von@',1,4)