Unit _4string

-------------------------------------------------------------------------- Sprache : Delphi 1.0 Aufgaben : Funktionen und Prozeduren fuer Pascal-Strings Hinweise : Programme, die diese Unit benutzen, muessen mit der Anweisung $X+ compiliert werden Fehler : Fehler bitte melden an: scheffczyk@verwaltung.uni-mainz.de Inhalt : Siehe Deklaration. ---------------------------------------------------------------------------

Classes

Functions

Types

TSetOfChar

Constants

AlphaChars
AlphaCharsAndDigits
Ascii7Bit
Ascii8Bit
Digits
DigitsPlus
DOSFilenameChars
K_BACKSPACE
K_DELETE
K_DOWN
K_END
K_ESC
K_HOME
K_INSERT
K_LEFT
K_PGDN
K_PGUP
K_RETURN
K_RIGHT
K_SPACE
K_TAB
K_UP
LowerChars
MaxByte
MaxInteger
MaxLongInt
MaxShortInt
MaxWord
MinByte
MinInteger
MinLongInt
MinShortInt
MinWord
NumBlockChars
UpperChars

Variables


Functions


Types


TSetOfChar = Set of Char
==========================================================================

Constants

AlphaChars = ['A'..'Z','a'..'z','Ä','Ö','Ü','ä','ö','ü','ß']

AlphaCharsAndDigits = ['A'..'Z','a'..'z','Ä','Ö','Ü','ä','ö','ü','ß','0'..'9']

Ascii7Bit = [#32..#127]

Ascii8Bit = [#32..#255]

Digits = ['0'..'9']

DigitsPlus = ['0'..'9','.',',','-','+']

DOSFilenameChars = ['A'..'Z','a'..'z','0'..'9','-','_']

K_BACKSPACE = 8

K_DELETE = 83

K_DOWN = 80

K_END = 79

K_ESC = 27

K_HOME = 71

K_INSERT = 82

K_LEFT = 75

K_PGDN = 81

K_PGUP = 73

K_RETURN = 13

K_RIGHT = 77

K_SPACE = 32

K_TAB = 9

K_UP = 72

LowerChars = ['a'..'z','ä','ö','ü','ß']

MaxByte = 255

MaxInteger = 32767

MaxLongInt = 2147483647

MaxShortInt = 127

MaxWord = 65535

MinByte = 0

MinInteger = -32768

MinLongInt = -2147483647-1

MinShortInt = -128

MinWord = 0

NumBlockChars = ['a'..'i','`']

UpperChars = ['A'..'Z','Ä','Ö','Ü']


Variables