Delphi實用小函式

2021-05-24 03:22:42 字數 389 閱讀 2891

1.write log entries to file.

// begin of logger

uses sysutils;

procedure logger(msgtext: string);

varflog : textfile;

begin

assignfile(flog, 'c:/test.txt');

trywriteln(flog, formatdatetime('mm/dd/yy hh:nn:ss', now) + msgtext);

flush(flog);

finally

closefile(flog);

end;

end;

// end of logger

js實用小函式收集

格式化金額 var val 212312.235423 var rex d d g val.replace d d function s,s1,s2,s3 獲取陣列指定元素的下標 array.prototype.indexof function val return 1 刪除陣列中的某個元素 arr...

C 實用小技巧

系統自帶全球唯一標示id system.guid.newguid tostring 字元竄或者變數前加乙個 標示為路徑 muban.doc 複製檔案 system.io.file.copy 檔案路徑,檔案路徑 刪除檔案 system.io.file.delete 檔案路徑 結束程序 foreach ...

python實用小知識

python是解釋型語言,你的 在執行時會一行一行地翻譯成cpu能理解的機器碼,這個翻譯過程非常耗時,所以很慢。而c程式是執行前直接編譯成cpu能執行的機器碼,所以非常快 如果字串內部既包含 又包含 怎麼辦?可以用轉義字元 來標識,比如 i m ok 表示的字串內容是 i m ok python還允...