//用惯JAVA或C#的人可能对DELPHI非常生气,连基本的类型都没有,我平时工作中,经常会曾试着把一些函数集合在一起,也经常做一些属于自己的基础类型的函数,此处把它们弄出来,有不当之处,请大家点评.
unit BaseClass;
interface
uses
SysUtils, Classes, StrUtils, IdGlobal, Math;
type
TCharSet = set of char;
var
TNormalCharSet: TCharSet = [#13, #10, #32, '.', ',', ';'];
type
TString = class
private
FText: string;
public
function CharAt(APosition: Integer): Char;
//指定位置的字母
function toLowerCase: s...[ 查看全文 ]