Buchempfehlung
Windows System Programming
Windows System Programming
Das Kompendium liefert viele interessante Informationen zur Windows-Programmierung auf Englisch. [Mehr Infos...]
FreeBASIC-Chat
Es sind Benutzer im FreeBASIC-Chat online.
(Stand:  )
FreeBASIC bei Twitter
Twitter FreeBASIC-Nachrichten jetzt auch über Twitter erhalten. Follow us!

fb:porticula NoPaste

Info
Info / Hilfe
Liste
Übersicht / Liste
Neu
Datei hochladen
Suche
Quellcode suchen
Download
Dateidownload

STR und MID

Uploader:AdministratorSebastian
Datum/Zeit:22.03.2013 16:37:21

Dim As Integer DLF

For DLF = 1 To 5
    Print "Ohne MID: _" & STR(DLF) & "_     Mit MID: _" & MID(STR(DLF),1,1) & "_"
Next DLF

SLEEP
END


' Ausgabe des Programms:
'======================================
'Ohne MID: _1_     Mit MID: _1_
'Ohne MID: _2_     Mit MID: _2_
'Ohne MID: _3_     Mit MID: _3_
'Ohne MID: _4_     Mit MID: _4_
'Ohne MID: _5_     Mit MID: _5_