RIGHT/de

Aus MCS Wiki AVR
< RIGHT(Unterschied zwischen Versionen)
Wechseln zu: Navigation, Suche
((**COPIED FROM ENGLISH PAGE**) =)
(Remarks)
 
(4 dazwischenliegende Versionen von einem Benutzer werden nicht angezeigt)
Zeile 17: Zeile 17:
 
<span style="font-family: Arial;">&nbsp;</span>
 
<span style="font-family: Arial;">&nbsp;</span>
  
= <span class="f_Header">Remarks</span> =
+
= <span class="f_Header">Anmerkungen</span> =
 
<div style="padding: 0px; margin: 0px 0px 0px 4px;">
 
<div style="padding: 0px; margin: 0px 0px 0px 4px;">
 
{| width="496" cellspacing="0" cellpadding="1" border="1" style="border: 2px solid rgb(0, 0, 0); border-spacing: 0px; border-collapse: collapse;"
 
{| width="496" cellspacing="0" cellpadding="1" border="1" style="border: 2px solid rgb(0, 0, 0); border-spacing: 0px; border-collapse: collapse;"
Zeile 25: Zeile 25:
  
 
| valign="top" width="100%" style="width: 416px; border: 1px solid rgb(0, 0, 0);" |  
 
| valign="top" width="100%" style="width: 416px; border: 1px solid rgb(0, 0, 0);" |  
The string that is assigned.
+
Ziel-Zeichenkette
  
 
|- style="vertical-align: top;"
 
|- style="vertical-align: top;"
 
| valign="top" width="15%" style="width: 71px; border: 1px solid rgb(0, 0, 0);" |  
 
| valign="top" width="15%" style="width: 71px; border: 1px solid rgb(0, 0, 0);" |  
Var1
+
var1
  
 
| valign="top" width="100%" style="width: 416px; border: 1px solid rgb(0, 0, 0);" |  
 
| valign="top" width="100%" style="width: 416px; border: 1px solid rgb(0, 0, 0);" |  
The source string.
+
Quell-Zeichenkette.
  
 
|- style="vertical-align: top;"
 
|- style="vertical-align: top;"
 
| valign="top" width="15%" style="width: 71px; border: 1px solid rgb(0, 0, 0);" |  
 
| valign="top" width="15%" style="width: 71px; border: 1px solid rgb(0, 0, 0);" |  
st
+
n
  
 
| valign="top" width="100%" style="width: 416px; border: 1px solid rgb(0, 0, 0);" |  
 
| valign="top" width="100%" style="width: 416px; border: 1px solid rgb(0, 0, 0);" |  
The number of bytes to copy from the right of the string.
+
Anzahl von Zeichen, die aus der Quell-Zeichenkette von rechts gelesen werden sollen.
 +
 
  
 
|}
 
|}
Zeile 47: Zeile 48:
 
<span style="font-family: Arial;">&nbsp;</span>
 
<span style="font-family: Arial;">&nbsp;</span>
  
= <span class="f_Header">See also</span> =
+
= <span class="f_Header">Siehe auch</span> =
  
 
[[LEFT]]&nbsp;,&nbsp;[[MID]]
 
[[LEFT]]&nbsp;,&nbsp;[[MID]]
Zeile 55: Zeile 56:
 
<span style="font-family: Arial;">&nbsp;</span>
 
<span style="font-family: Arial;">&nbsp;</span>
  
= <span class="f_Header">Example</span> =
+
= <span class="f_Header">Beispiel</span> =
  
 
<br/><source lang="bascomavr">
 
<br/><source lang="bascomavr">

Aktuelle Version vom 27. Februar 2013, 01:02 Uhr

Inhaltsverzeichnis

Funktion

Gibt die rechtesten n Zeichen einer Zeichenkette zurück.

 

 

Syntax

var = RIGHT(var1 ,n )

 

 

 

Anmerkungen

var

Ziel-Zeichenkette

var1

Quell-Zeichenkette.

n

Anzahl von Zeichen, die aus der Quell-Zeichenkette von rechts gelesen werden sollen.


 

 

Siehe auch

LEFT , MID

 

 

Beispiel


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  
Meine Werkzeuge
Namensräume
Varianten
Aktionen
Navigation
In anderen Sprachen
Sprache