RIGHT/de

From MCS Wiki AVR
< RIGHT(Difference between revisions)
Jump to: navigation, search
((**COPIED FROM ENGLISH PAGE**) =)
(Remarks)
 
(4 intermediate revisions by one user not shown)
Line 17: Line 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;"
Line 25: Line 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.
 +
 
  
 
|}
 
|}
Line 47: Line 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]]
Line 55: Line 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">

Latest revision as of 01:02, 27 February 2013

Contents

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  
Personal tools
Namespaces
Variants
Actions
Navigation
In other languages
Language