RIGHT/de
(Difference between revisions)
m (1 revision) |
(→(**COPIED FROM ENGLISH PAGE**) =) |
||
Line 1: | Line 1: | ||
− | + | = <span class="f_Header">Funktion</span> = | |
− | + | Gibt die rechtesten n Zeichen einer Zeichenkette zurück. | |
<span style="font-family: Arial;"> </span> | <span style="font-family: Arial;"> </span> |
Revision as of 00:57, 27 February 2013
Contents |
Funktion
Gibt die rechtesten n Zeichen einer Zeichenkette zurück.
Syntax
var = RIGHT(var1 ,n )
Remarks
var |
The string that is assigned. |
Var1 |
The source string. |
st |
The number of bytes to copy from the right of the string. |
See also
Example
Dim S As String * 15 , Z As String * 15 S ="ABCDEFG" Z = Left(s , 5) Print Z 'ABCDE Z = Right(s , 3) : Print Z Z = Mid(s , 2 , 3) : Print Z End
Languages | English • Deutsch |
---|