字符串處理函數git
Unit Systemdom
函數原型 function Concat(s1 [, s2,..., sn]: string): string; 說明 與 S := S1 + S2 + S3 ...; 相同. 將字符串相加.函數
函數原型 function Copy(S: string; Index, Count: Integer): string;說明 S : 字符串. Indexd : 從第幾位開始拷貝. Count : 總共要拷貝幾位. 從母字符串拷貝至另外一個字符串.測試
函數原型 procedure Delete(var S: string; Index, Count:Integer);說明 S : 字符串. Indexd : 從第幾位開始刪. Count : 總共要刪幾位. 刪除字符串中的數個字元.指針
函數原型 procedure Insert(Source: string; var S: string; Index: Integer);說明 Source : 子字符串. S : 被插入字符串. Indexd : 從第幾位開始插入. 將一個子字符串插入另外一個字符串中.code
函數原型 function Length(S: string): Integer; 求字符數orm
函數原型 function Pos(Substr: string; S: string): Integer;說明 Substr : 子字符串.S : 母字符串. 尋找子字符串在母字符串中的位置.內存
函數原型 function LowerCase(const S: string): string; 將字符串所有轉爲小寫字母.ci
函數原型 function UpperCase(const S: string): string; 將字符串所有轉爲大寫字母.字符串
pos(obj,target) 在target字符串中找出第一個出現obj的第一個字符位置,若是找不到,返回0.
function StringReplace(const S, OldPattern, NewPattern: string; Flags: TReplaceFlags): string;功能 返回替換後的字符串說明 rfReplaceAll爲替換所有內容;rfIgnoreCase爲忽略大小寫
function StringToGUID(const S: string): TGUID;功能 返回字符串S轉換成全局標識說明 若是字符串非法將觸發異常
function GUIDToString(const GUID: TGUID): string;功能 返回全局標識GUID轉換成字符串
函數原型 procedure Str(X [: Width [: Decimals ]]; var S); 將數值轉換爲格式化的字符串.說明 X : 欲轉換的整數 or 實數. Width : 格式化長度.(Integer) Decimals : 小數點位數.(Integer)
函數原型 procedure Val(S; var V; var Code: Integer); 將字符串轉爲數字.說明 S : 欲轉換的字符串. V : 轉換後的整數 or 實數.Code : Code = 0 表示轉換成功.
Unit SysUtils
函數原型 function NewStr(const S: string): PString; 在 heap 中配置一個新的字符串空間給PString 指針.
函數原型 procedure DisposeStr(P: PString); 在 heap 中釋放一個字符串空間 PString指針.
函數原型 function IntToHex(Value: Integer; Digits: Integer): string;
函數原型 function IntToStr(Value: Integer): string;
函數原型 function StrToInt(const S: string): Integer;
函數原型 function StrToIntDef(const S: string; Default: Integer): Integer; 說明 Value : 欲轉換的整數. Digits : 欲轉換爲幾位數的 Hex.
函數原型 function Trim(const S: string): string; 將字符串先後的空白及控制字元清掉.
函數原型 function TrimLeft(const S: string): string; 將字符串左邊的空白及控制字元清掉.
函數原型 function TrimRight(const S: string): string; 將字符串右邊的空白及控制字元清掉.
函數原型 function AdjustLineBreaks(const S: string): string; 將字符串的換行符號所有改成#13#10
函數原型 function StrAlloc(Size: Cardinal): PChar; 配置字符串空間. 說明 Size=字符串最大空間+1
函數原型 function StrBufSize(Str: PChar): Cardinal; 傳回由 StrAlloc 配置空間的大小
函數原型 function StrCat(Dest, Source: PChar): PChar; 字符串相加.
函數原型 function StrComp(Str1, Str2 : PChar): Integer; 比較兩字符串大小.
函數原型 function StrCopy(Dest, Source: PChar): PChar; 拷貝字符串.
函數原型 procedure StrDispose(Str: PChar); 釋放StrAlloc or StrNew所配置的空間.
函數原型 function StrECopy(Dest, Source: PChar): PChar; 拷貝字符串並傳回字符串結束位址.
函數原型 function StrEnd(Str: PChar): PChar; 傳回字符串結束位址.
函數原型 function StrIComp(Str1, Str2:PChar): Integer; 比較兩字符串大小.(不分大小寫)
函數原型 function StrLCat(Dest, Source: PChar; MaxLen: Cardinal): PChar;字符串相加.(指定長)
函數原型 function StrLComp(Str1, Str2: PChar; MaxLen: Cardinal):Integer; 比較兩字符串大小.(指定長)
函數原型 function StrLCopy(Dest, Source: PChar; MaxLen: Cardinal): PChar; 拷貝字符串.(指定長)
函數原型 function StrLen(Str: PChar): Cardinal; 傳回字符串長度.(不含終止位元)
函數原型 function StrLIComp(Str1, Str2: PChar; MaxLen: Cardinals): Integer; 比較兩字符串大小.(指定長,不分大小寫)
函數原型 function StrLower(Str: PChar): PChar; 將字符串所有轉爲小寫字母.
函數原型 function StrMove(Dest, Source: PChar; Count:Cardinal): PChar; 歷來源字符串拷貝n個Bytes到目標r串.(不含終止位元)
函數原型 function StrNew(Str: PChar): PChar; 配置字符串空間.
函數原型 function StrPas(Str: PChar): string; 將 null-terminated 字符串轉爲Pascal-style 字符串.
函數原型 function StrPCopy(Dest: PChar; Source: string): PChar; 拷貝 Pascal-style 字符串到null-terminated 字符串.
函數原型 function StrPLCopy(Dest: PChar; const Source: string; MaxLen: Cardinal): PChar; 拷貝 Pascal-style 字符串到null-terminated 字符串.(指定長)
函數原型 function StrPos(Str1, Str2: PChar): PChar; 子字符串在母字符串中的位置.(第一個位置) 說明 Str1 母字符串;Str2 子字符串
函數原型 function StrUpper(Str: PChar): PChar; 將字符串所有轉爲大寫字母.
StrAlloc 配置一個最大長度爲Size-1 的緩衝區給null 結尾字符串function StrAlloc(Size: Word): PChar;
StrBufSize 傳回由StrAlloc 配置的字符串緩衝區內能夠儲存的最大字元數。StrBufSize( S: PChar ): Cardinal;
StrCat連結兩個字符串並傳回該字符串。function StrCat(Dest, Source: PCar): PChar;
StrComp 比照兩個字符串。function StrComp(Str1, Str2 : Pchar): Integer;
StrCopy 拷貝Source 字符串到Dest 上。function StrCopy(Dest, Source: PChar): PChar
StrDispose 釋回一個字符串空間。function StrDispose(Str:PChar);
StrECopy 拷貝Source 字符串到Dest 上並傳回指向該字符串結尾的指針。function StrECopy(Dest, Surce: Pchar): Pchar;
StrEnd 傳回一指針指向字符串的結尾function StrEnd(Str: Pchar): Pchar;
StrLCat 將Source 字符串連結到Dest 字符串後,並傳回連結的字符串。function StrLCat(Dest, Source:PCar; MaxLen: Word): PChar;
StrIComp 比較兩個字符串具無大小寫區別function StrIComp(Str1, Str2:Pchar): Integer;
StrLComp 比較兩個字符串到所指定的最大長度function StrLComp(Str1, Str2:Pchar; MaxLen: Word): Integer;
StrLCopy 從一字符串拷貝指定字元數到另外一字符串Function StrLCopy(Dest,Source:PChar;MaxLen: Cardinal): PChar;
StrLen 傳回字符串的長度。function StrLen(Str: PChar):Cardinal;
StrLIComp 比較兩個字符串到所指定的最大長度具無大小寫區別。function StrLIComp(Str1, Str2:PChar; MaxLen: Word):Integer;
StrLower 將字符串轉成小寫。function StrLower(Str: PChar):PChar;
StrMove 拷貝Count 字元數,從Source 到Dest字符串。function StrMove(Dest, Source:PChar; Count: Cardinal): PChar
StrNew 從堆積配置一個字符串。function StrNew(Str: PChar):PChar;
StrPas 將null 結尾字中轉成一個Pascal 格式字符串。function StrPas(Str: Pchar):String;
StrPCopy 拷貝一個Pascal 格式字符串到一個null結尾字符串。Function StrPCopy(Dest:PChar;Source: String): PChar;
StrPLCopy 拷貝MaxLen 所指字元數,從Pascal格式字符串到null 結尾字符串。Function StrPLCopy(Dest:Pchar;cost Source: string;MaxLen: Word): PChar;
StrPos 傳回一指針指向在Str1 內最早出現 Str2 字符串的位置。function StrPos(Str1, Str2: Pchar): Pchar;
StrScan 傳回一指針指向在Str 字符串中第一個出現chr 字元的位置。function StrScan(Str: PChar; Chr: Char): PChar;
StrRScan 傳回一指針指向在Str 子串中最後出現chr 字元的位置。function StrRScan(Str: Pchar; Chr: Char): PChar;
StrUpper 將字符串轉成大寫。function StrUpper(Str: PChar):PChar;
日期與時間函數 (Date and Time Routines)
Unit: SysUtils
Date 傳回今天日期。function Date: TDateTime;
DateTimeToStr 將時間格式轉爲字符串。function DateTimeToStr(DateTime: TDateTime):String;
DateTimeToString 將時間格式轉爲字符串。procedure DateTimeToString(var Result: string;const Format: string;DateTime: TDateTime);
DateToStr 將日期格式轉爲字符串。function DateToStr(Date: TDateTime): String;
DayOfWeek 傳回今天星期幾。function DayOfWeek(Date: TDateTime): Integer; 傳回值是一整數,1~7. 星期日爲1.
DecodeDate 分解所指定的日期爲年、月、日。procedure DecodeDate(Date: TDateTime;var Year, Month, Day:Word);
DecodeTime 分解所指定的日期爲時、分、秒。procedure DecodeTime(Time: TDateTime;var Hour, Min, Sec,MSec: Word);
EncodeDate 傳回將年、月、日所組合的日期格式。function EncodeDate(Year, Month, Day: Word):TDateTime;
EncodeTime 傳回將時、分、秒所組合的時間格式。function EncodeTime(Hour, Min, Sec, MSec:Word): TDateTime;
FormatDateTime 以指定的格式傳回日期時間。function FormatDateTime(const Format: string;DateTime: TDateTime):String;
Now 傳回如今的日期時間。function Now: TDateTime;
StrToDate 將字符串轉爲日期格式。function StrToDate(const S:string): TDateTime;
StrToDateTime 將字符串轉爲日期時間格式function StrToDateTime(const S: string): TDateTime;
StrToTime 將字符串轉爲時間格式。function StrToTime(const S:string): TDateTime;
Time 傳回如今時間。function Time: TDateTime;
TimeToStr 將時格式轉爲字符串。function TimeToStr(Time:TDateTime): String;
文件管理函數
Unit: SysUtils
函數原型 function ExtractFileDir(const FileName: string): string;
函數原型 function ExtractFileDrive(const FileName: string): string;
函數原型 function ExtractFileExt(const FileName: string): string;
函數原型 function ExtractFileName(const FileName: string): string;
函數原型 function ExtractFilePath(const FileName: string): string;
函數原型 function DeleteFile(const FileName: string): Boolean;
函數原型 function RenameFile(const OldName, NewName: string):Boolean;
函數原型 function FileExists(const FileName: string): Boolean;
函數原型 procedure FindClose(var F: TSearchRec);
函數原型 function FindFirst(const Path: string; Attr: Integer; var F: TSearchRec): Integer;
函數原型 function FindNext(var F: TSearchRec): Integer;說明 成功傳回0
ChangeFileExt 變動文件的擴展名。
function ChangeFileExt(const FileName,Extension: string):string; DateTimeToFileDate 將Delphi 的日期格式轉換爲DOS的日期格式。
functionDateTimeToFileDate(DateTime:TDateTime): Longint;
DeleteFile 刪除一個文件。function DeleteFile(const FileName: string):Boolean;
DiskFree 傳回磁碟的可用空間。function DiskFree(Drive: Byte): Longint;
DiskSize 傳回指定磁碟的容量大小。function DiskSize(Drive: Byte): Longint;
ExpandFileName 傳回一個完整的路徑及檔名字符串。function expandFileName(const FileName: string):string;
ExtractFileExt 傳回文件的擴展名。function ExtractFileExt(const FileName string):string;
ExtractFileName 傳回文件的檔名。function ExtractFileName(const FileName: string):string;
ExtractFilePath 傳回文件的路徑。function ExtractFilePath(const FileName: string):string;
FileAge 傳回文件的年紀function FileAge(const FileName: string):Longint;
FileCreate 以指定檔名創建一個文件。function FileCreate(const FileName: string):Integer;
FileClose 關閉指定的文件。procedureFileClose(Handle: Integer);
FileDateToDateTime 將DOS 的日期格式轉爲Delphi 的日期格式。function FileDateToDateTime(FileDate: Longint):TDateTime;
FileExists 判別文件是否存在。function FileExists(const FileName: string):Boolean;
FileGetAttr 傳回文件屬性。function FileGetAttr(const FileName: string):Integer;
FileGetDate 傳回文件的日期及時間。function FileGetDate(Handle: Integer): Longint;
FileRead 從指定的文件讀入資料。function FileRead(Handle:Integer; var Buffer;Count:Longint):Longint;
FileSearch 在目錄列中搜尋指定的文件。function FileSearch(constName, DirList: string):string;
FileSeek 改變文件遊標的位置。function FileSeek(Handle: Integer;Offset: Longint;Origin: Integer):Longint;
FileSetAttr 設定文件屬性。function FileSetAttr(const FileName: string;Attr:Integer): Integer;
FileSetDate 設定文件的日期及時間。procedure FileSetDate(Handle: Integer; Age:Longint);
FileOpen 開啓文件。function FileOpen(const FileName: string; Mode:Word): Integer;
FileWrite 寫資料到文件。function FileWrite(Handle:Integer;const Buffer; Count:Longint): Longint;
FindClose 終止找尋第一個/下一個的動做。procedure FindClose(var SearchRec: TSearchRec);
FindFirst 尋找第一個符合的文件並設定其屬性。
function FindFirst(const Path: string;Attr: Word; var F:TSearchRec): Integer;
FindNext 傳回下一個符合的文件。function FindNext(var F:TSearchRec): Integer;
RenameFile 變動文件名。function RenameFile(const OldName,NewName: string):Boolean;
轉換函數(Transfer Routines)
Unit: System
Chr 傳回ASCII 碼所對應的字元。function Chr(X: Byte): Char;
Delphi 源碼任務 ( http://home.kimo.com.tw/bruce0211/ ) 打字整理15
High 傳回叄數在範圍內的最高值。function High(X);
Low 傳回叄數在範圍內的最低值。function Low(X);
Ord 傳回一個有序型態所對應的順序值。function Ord(X): Longint;
Round 將一個實數值四捨五入而傳回整數值。function Round(X: Real):Longint;
Trunc 將一個實數值去尾而傳回整數值。function Trunc(X: Real):Longint;
pred(x) pred('D')='C', pred(true)=1;
succ(x) succ('Y')='Z', succ(pred(x))=x
ord(x) 求x在字符集中的序號,如ord('A')=65
chr(x) chr(65)='A'
round(x) 四捨五入
trunc(x) trunc(4.8)=4,trunc('-3.6')=-3
upcase(x) upcase('a')='A'
hi(I) hi($2A30)=$2A
lo(I) lo($2A30)=$30
random(n) 產生[0,n)間的隨機整數
sizeof(name) 求出某類型或變量在內存中佔用的字節數
swap(num) 交換int的高低位 swap($3621)=$2136
Frac 求一個實數的小數部份
R := Frac(123.456); { 0.456 }
R := Frac(-123.456); { -0.456 }
Int 求一個實數的整數部份
R := Int(123.456); { 123.0 }
R := Int(-123.456); { -123.0 }
函數原型 function High(X); 傳回註腳的最大值
函數原型 function Low(X); Low 傳回註腳的最小值.
函數原型 function Ord(X): Longint; 傳回列舉型態的數值.
函數原型 function Round(X: Extended): Longint; 將實數轉爲整數.(有四捨五入)
函數原型 function Trunc(X: Extended): Longint; 將實數轉爲整數.(小數直接捨棄)
函數原型 function VarArrayCreate(const Bounds: array of Integer; VarType: Integer): Variant; 創建一個variant array.
函數原型 function VarArrayOf(const Values: array of Variant): Variant; 創建一個簡單的一維variant array
函數原型 function VarArrayLock(var A: Variant): Pointer; 將variant陣列==>指定給一陣列變數.
函數原型 procedure VarArrayUnlock(var A: Variant); 解除上述的指定.
函數原型 function VarIsArray(const V: Variant): Boolean; 傳回Variant是否爲一個陣列.
函數原型 function VarIsNull(const V: Variant): Boolean; 傳回Variant是否爲NULL.
函數原型 function VarAsType(const V: Variant; VarType: Integer): Variant; 將Variant轉爲另一個型態的Variant.
函數原型 procedure VarCast(var Dest: Variant; const Source: Variant; VarType: Integer);說明 VarType不可爲varArray or varByRef.
函數原型 function VarType(const V: Variant): Integer; 傳回Variant的型態.
函數原型 procedure VarClear(var V: Variant); 將variant清除,成爲Unassigned狀態.
函數原型 procedure VarCopy(var Dest: Variant; const Source: Variant); 拷貝一個variant.說明 與Dest:=Source;效果同樣.
函數原型 function VarFromDateTime(DateTime: TDateTime): Vari ant; 將DateTime轉爲Variant.
函數原型 function VarToDateTime(const V: Variant): TDateTime; 將Variant轉爲DateTime.
函數原型 function Hi(X): Byte; 傳回高位元數字.Hi($1234); { $12 }
函數原型 procedure Include(var S: set of T; I:T); 說明 加入I元素到S中. 加入一個元素到一組元素.
函數原型 function Lo(X): Byte; Lo($1234); { $34 }
函數原型 procedure Move(var Source, Dest; Count: Integer); 歷來源變數拷貝n個Bytes到目的變數.
函數原型 function ParamCount: Integer; 直接由執行檔後加上傳入變數的個數.
函數原型 function ParamStr(Index: Integer): string;說明 ParamStr(0);傳回執行檔的名稱及完整目錄.
函數原型 function Random [ ( Range: Integer) ]; 說明 0<=X<Range
函數原型 function Swap(X); Swap 將一組變數的高低位元交換.
函數原型 function UpCase(Ch: Char): Char; 將一字元轉爲大寫字母.
函數原型 procedure Dec(var X[ ; N: Longint]);說明 Dec(X) ==> X:=X-1; Dec(X,N) ==> X:=X-N; 使變數遞減.
函數原型 procedure Inc(var X [ ; N: Longint ] );說明 Inc(X) ==> X:=X-1;Inc(X,N) ==> X:=X-N; 使變數遞增.
函數原型 function Odd(X: Longint): Boolean; 檢查是否爲奇數.
函數原型 function Assigned(var P): Boolean; Assigned 測試指針變數是否爲nil. 說明 當@P=nil ==> 傳回FALSE
數學函數
Abs 傳回叄數的絕對值。 function Abs(X);
ArcTan 傳回正切函數的反函數值。 function ArcTan(X: Real): Real;
Cos 傳回餘弦函數值 function Cos(X: Real): Real; (X 以弧度爲單位)。
Exp 傳回天然指數值。 function Cos(X: Real): Real;
Frac 傳回叄數的小數部份。 function Frac(X: Real): Real;
Int 傳回叄數的整數部份。 function Int(X: Real): Real;
Ln 傳回天然對數值。 function Ln(X: Real): Real;
Pi 傳回圓周率π的值。 function Pi: Real;
Sin 傳回正弦函數值。 function Sin(X: Real): Real;
Sqr 傳回叄數的平方。 function Sqr(X: Real): (Real);
Sqrt 傳回叄數的平方根。 function Sqrt(X: Real): Real;
輸出入函數Unit: System
AssignFile 指定一個文件到文件變數。procedure AssignFile(var f, String);
CloseFile 關閉文件。procedure CloseFile(var F);
Eof 判斷是否已到文件結尾。
Typed or untyped files: functionEof(var F): BooleanText files:function Eof [ (var F: Text) ]:Boolean;
Erase 清除文件內容。procedure Erase(var F);
FilePos 傳回目前文件遊標位置。function FilePos(var F): Longint;
FileSize 傳回文件的大小function FileSize(var F):Longint;
GetDir 傳回指定磁碟的工做目錄。procedure GetDir(D: Byte; var S: String);
IOResult 傳回最後I/O 執行的狀態。function IOResult: Integer;
MkDir 創建一子目錄。procedure MkDir(S: String);
Rename 變動外部文件的檔名。procedure Rename(var F; Newname);
Reset 開啓一個已存在的文件。procedure Reset(var F [: File; Recsize: Word ] );
Rewrite 創建並開啓一個新檔。procedure Rewrite(var F: File [; Recsize: Word ] );
RmDir 刪除一個空目錄。procedure RmDir(S: String);
Seek 移動文件遊標。procedure Seek(var F; N: Longint);
Truncate 刪截目前位置之後的文件內容。procedure Truncate(var F);
浮點數轉換函數 Unit: SysUtils
FloatToDecimal 將浮點數值分紅小數及整數部份的數字傳回。
procedure FloatToDecimal(var Result: TFloatRec;Value:Extended;Precision, Decimals:Integer);
FloatToStrF 依照指定格式將浮點數轉成字符串描述。
function FloatToStrF(Value: Extended; Format:TFloatFormat;Precision,Digits: Integer): string;
FloatToStr 將浮點數轉成字符串描述。function FloatToStr(Value: Extended): string;
FloatToText 將所給的浮點數值,分紅小數及整數部份的數字依照格式傳回。
function FloatToText(Buffer: Pchar; Value:Extended;Format:TFloatFormat;Precision,Digits: Integer): Integer;
FloatToTextFmt 將浮點數依照格式轉成字符串傳回。
function FloatToTextFmt(Buffer: PChar; Value:Extended;Format: PChar) :Integer;
FormatFloat 將浮點數值依照Format 格式傳回。
function FormatFloat(constFormat: string;Value:Extended):string;
StrToFloat 將所給字符串轉成一個浮點數值。
function StrToFloat(const S: string): Extended;
TextToFloat 將一個null 結尾字符串轉成浮點數值
function TextToFloat(Buffer: PChar;var Value:Extended): Boolean;
流程控制函數 Unit: System
Break 終止循環。如for, while 及repeat 循環。
Continue 繼續循環。如for, while 及repeat 循環。
Exit 離開目前的區塊。procedure Exit;
Halt 中止程式的執行並回到做業系統。
動態配置函數Unit: System
Dispose 釋回一個動態變數。procedure Dispose(var P: Pointer);
Free 釋放一個物件複本。procedure Free;
FreeMem 釋回一給定大小的動態變數。procedure FreeMem(var P:Pointer; Size: Word);
GetMem 創建一個指定大小的動態變數,並由Pointer 叄數傳回位址。procedure GetMem(var P:Pointer; Size: Word);
New 創建一個新的動態變數,並將Pointer 叄數指向它。procedure New(var P: Pointer);function New(<pointer type>):Pointer;
MaxAvail 傳回連續最大的可配置空間。function MaxAvail: Longint;
MemAvail 傳回全部的可配置空間。function MemAvail: Longint;
指針和位址函數 Unit: System
addr 傳回指定物件的位址。function Addr(X): pointer;
Assigned 判斷是否一個函數或程序是nil function Assigned(var P):Boolean;
CSeg 傳回CS 程式段暫存器的內容。function CSeg: Word;
DSeg 傳回DS 資料段暫存器的內容。function DSegt: Word;
Ofs 傳回叄數的偏移位址。function Ofs(X): Word;
Ptr 將所指定的節段及偏移位址組合到一個指針。function Ptr(Seg, Ofs: Word):Pointer;
Seg 傳回叄數的節段位址。function Seg(X): Word;
SPtr 傳回SP 堆疊存器的內容。function SPtr: Word;
SSeg 傳回SS 堆疊段暫存器的內容。function SSeg: Word;
控制檯函數 Unit: WinCrt
AssignCrt 將文字檔連結到一個控制檯視窗。 procedure AssignCrt(var f: Text);
ClrEol 清附遊標位置到該行最後的全部字元。procedure ClrEol;
ClrScr 清附螢幕並重置遊標至左上角。 procedure ClrScr;
CursorTo 移動遊標至給定座標。 procedure CursorTo(X, Y:Integer);
DoneWinCrt 結束控制檯視窗。 procedure DoneWinCrt;
GotoXY 移動遊標至給定座標。 procedure GotoXY(X, Y: Byte);
InitWinCrt 創建控制檯視窗。 procedure InitWinCrt;
KeyPressed 判斷是否有一按鍵。 function KeyPressed:Boolean;
ReadBuf 從控制檯視窗讀入一行。 function ReadBuf(Buffer: Pchar;Count: Word):
ReadKey 讀取按鍵字元。function ReadKey: Char;
ScrollTo 捲動控制檯視窗至顯示位置。procedure ScrollTo(X, Y: Integer);
TrackCursor 捲動控制檯視窗宜到遊標可見。procedure TrackCursor;
WhereX 傳回遊標的X 座標。function WhereX: Byte;
WhereY 傳回遊標的Y 標標。function WhereY: Byte;
WriteBuf 寫入一區塊字元到控制檯視窗。procedure WriteBuf
WriteChar 寫一個字元到控制檯視窗。procedure WriteChar(CH: Char);