LEFT/de

(Difference between revisions)
Jump to: navigation, search
(Funktion)
(Remarks)
Line 15: Line 15:
 
<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="569" cellspacing="0" cellpadding="1" border="1" style="border: 2px solid rgb(0, 0, 0); border-spacing: 0px; border-collapse: collapse;"
 
{| width="569" cellspacing="0" cellpadding="1" border="1" style="border: 2px solid rgb(0, 0, 0); border-spacing: 0px; border-collapse: collapse;"
Line 23: Line 23:
  
 
| valign="top" width="100%" style="width: 490px; border: 1px solid rgb(0, 0, 0);" |  
 
| valign="top" width="100%" style="width: 490px; border: 1px solid rgb(0, 0, 0);" |  
The string that is assigned.
+
Die Ziel-Zeichenkette.
  
 
|- style="vertical-align: top;"
 
|- style="vertical-align: top;"
Line 30: Line 30:
  
 
| valign="top" width="100%" style="width: 490px; border: 1px solid rgb(0, 0, 0);" |  
 
| valign="top" width="100%" style="width: 490px; border: 1px solid rgb(0, 0, 0);" |  
The source string.
+
Die Quell-Zeichenkette.
  
 
|- style="vertical-align: top;"
 
|- style="vertical-align: top;"
Line 37: Line 37:
  
 
| valign="top" width="100%" style="width: 490px; border: 1px solid rgb(0, 0, 0);" |  
 
| valign="top" width="100%" style="width: 490px; border: 1px solid rgb(0, 0, 0);" |  
The number of characters to get from the source string.
+
Anzahl von Zeichen, die aus der Quell-Zeichekette gelesen werden sollen.
  
 
|}
 
|}

Revision as of 01:33, 25 February 2013

Contents

Funktion

Gibt die linkesten n Zeichen einer Zeichenkette zurück.

 

 

Syntax

var = LEFT(var1 , n)

 

 

Anmerkungen

Var

Die Ziel-Zeichenkette.

Var1

Die Quell-Zeichenkette.

n

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

 

 

See also

RIGHT , MID

 

 

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