function TTestForm.DecimalToEnglishExt(num:string;cntype:integer):string;
var int_str,dec_str:string;//整数部分和小数部分
n:array[0..90] of string;
return:string;
digit:integer;//小数点位置
Minus:string;//数字正负性
Numlen,DecPos:integer;//数字长度,,
begin
if (Cntype<>0) and (CnType<>1) and (CnType<>2) then begin
showmessage('参数错误:选择转换类型参数值错误!');
result:='';
exit;
end;
return:='';//初始化结果字符
//初始化关键字
n[0]:='Zero';n[6]:='Six';n[12]:='Twelve';n[18]:='Eighteen';
n[1]:='One';n[7]:='Seven';n[13]:='Thirteen';n[19]:='Nineteen';
n[2]:='Two';n[8]:='Eight';n[14]:='Fourteen';n[20]:='Twenty';
n[3]:='Three';n[9]:='Nine';n[15]:='Fifteen';
n[4]:='Four';n[10]:='Ten';n[16]:='Sixteen';
n[5]:='Five';n[11]:='Eleven';n[17]:='Seventeen';
n[30]:='Thirty';n[50]:='Fifty';n[70]:='Seventy';n[90]:='Ninety';
n[40]:='Forty';n[60]:='Sixty';n[80]:='Eighty';
Minus:='';
if num[1]='-' then
begin
Num:=Copy(num,2,length(num)-1);
Minus:='Minus ';
end;
Numlen:=Length(num);//得到数字长度
//去掉前面没有用的0
Decpos:=Numlen;
for digit:=1 to Numlen do begin
if num[digit]<>'0' then begin Decpos:=digit;break;end;
end;
num:=copy(num,Decpos,Numlen-decpos+1);
Numlen:=Length(num);//得到数字长度
//校验Num的数字格式是否有效
//先校验参数number是不是数字格式
//校验是否只有一个小数点
Decpos:=0;
for digit:=1 to Numlen do begin
if Num[digit]='.' then Decpos:=Decpos+1;
end;
if Decpos>1 then begin
showmessage('参数错误:不是数字格式!');
Result:='';
exit;
end;
//校验是否含有非数字和'.'的字母存在
for digit:=1 to Numlen do begin
if Num[digit]='.' then continue;
if (ord(Num[digit])<48) or (ord(Num[digit])>57) then begin
Result:='error';
break;
end;
end;
if Result='error' then begin
showmessage('参数错误:不是数字格式!');
result:='';
exit;
end;
digit:=pos('.',num);//得到小数点位置
//分别得到整数部分和小数部分
if pos('.',num)>0 then
begin
int_str:=copy(num,1,digit-1);
dec_str:=copy(num,digit+1,Numlen-digit);
//消除小数后面多余的0
while copy(Dec_str,length(Dec_str),1)='0' do
Dec_str:=copy(Dec_str,1,length(Dec_str)-1);
if Dec_str='' then Dec_str:='0';
end
else
begin
int_str:=num;
dec_str:='';
end;
//消除整数部分前面的多余的0
while copy(int_str,1,1)='0' do
int_str:=copy(int_str,2,length(int_str)-1);
if int_str='' then int_str:='0';
//***********开始分析整数部分****************
if length(int_str)<=3 then//分析只有一~三位数的情况
begin
if int_str='0' then//等于0
return:='zero'
else
begin
if strtoint(int_str)<=20 then
begin//小于等于20
return:=n[strtoint(int_str)];//直接读取名称
end
else
begin
if strtoint(int_str)<100 then//小于100
begin
if int_str[2]='0' then//整十
return:=n[strtoint(int_str)]
else
return:=n[strtoint(int_str[1]+'0')]+' '+n[strtoint(int_str[2])];//组合几十几
end;
end;
if strtoint(int_str)>=100 then//大于100
begin
if (int_str[2]='0') and (int_str[3]='0') then
return:=n[strtoint(int_str[1])]+' Hundred'
else
return:=n[strtoint(int_str[1])]+' Hundred and '+DecimalToEnglishExt(int_str[2]+int_str[3],0);
end;
end;
end;
if (length(int_str)>=4) and (length(int_str)<=6) then//分析有四~六位数的情况
begin
if strtoint(copy(int_str,length(int_str)-2,3))=0 then//后面全是0
return:=DecimalToEnglishExt(copy(int_str,1,length(int_str)-3),0)+' Thousand'
else
begin
if copy(int_str,length(int_str)-2,1)='0' then//百位为0,加and
return:=DecimalToEnglishExt(copy(int_str,1,length(int_str)-3),0)+' Thousand and '+DecimalToEnglishExt(copy(int_str,length(int_str)-2,3),0)
else
begin
if copy(int_str,length(int_str)-1,2)='00' then//是整百,加and
return:=DecimalToEnglishExt(copy(int_str,1,length(int_str)-3),0)+' Thousand and '+DecimalToEnglishExt(copy(int_str,length(int_str)-2,3),0)
else
return:=DecimalToEnglishExt(copy(int_str,1,length(int_str)-3),0)+' Thousand '+DecimalToEnglishExt(copy(int_str,length(int_str)-2,3),0);
end;
end;
end;
if (length(int_str)>=7) and ((length(int_str)<=9)) then//分析七~九位数的情况
begin
if strtoint(copy(int_str,length(int_str)-5,6))=0 then//如果后面6位全是0
return:=DecimalToEnglishExt(copy(int_str,1,length(int_str)-6),0)+' Million'
else
begin
{if pos('and',LowerCase(DecimalToEnglishExt(strtoint(copy(int_str,length(int_str)-5,6)))))=0 then
return:=DecimalToEnglishExt(strtoint(copy(int_str,1,length(int_str)-6)),0)+' Million and '+DecimalToEnglishExt(strtoint(copy(int_str,length(int_str)-5,6)))
else}
return:=DecimalToEnglishExt(copy(int_str,1,length(int_str)-6),0)+' Million,'+DecimalToEnglishExt(copy(int_str,length(int_str)-5,6),0);
end;
end;
if (length(int_str)>=10) and ((length(int_str)<=12)) then//分析十~十二位数的情况
begin
case Cntype of
0://普通格式
begin
if strtoint(copy(int_str,length(int_str)-5,6))=0 then//如果后面6位全是0
return:=DecimalToEnglishExt(copy(int_str,1,length(int_str)-6),0)+' Million'
else
begin
{if pos('and',LowerCase(DecimalToEnglishExt(strtoint(copy(int_str,length(int_str)-5,6)),0)))=0 then
return:=DecimalToEnglishExt(copy(int_str,1,length(int_str)-6),0)+' Million and '+DecimalToEnglishExt(strtoint(copy(int_str,length(int_str)-5,6)))
else}
return:=DecimalToEnglishExt(copy(int_str,1,length(int_str)-6),0)+' Million,'+DecimalToEnglishExt(copy(int_str,length(int_str)-5,6),0);
end;
end;
1://美式格式
begin
if strtoint(copy(int_str,length(int_str)-8,9))=0 then//如果后面9位全是0
return:=DecimalToEnglishExt(copy(int_str,1,length(int_str)-9),0)+' Billion'
else
return:=DecimalToEnglishExt(copy(int_str,1,length(int_str)-9),0)+' Billion,'+DecimalToEnglishExt(copy(int_str,length(int_str)-8,9),1);
end;
2://英式格式
begin
if strtoint(copy(int_str,length(int_str)-8,9))=0 then//如果后面9位全是0
return:=DecimalToEnglishExt(copy(int_str,1,length(int_str)-9),0)+' Milliard'
else
return:=DecimalToEnglishExt(copy(int_str,1,length(int_str)-9),0)+' Milliard,'+DecimalToEnglishExt(copy(int_str,length(int_str)-8,9),2);
end;
end;
end;
if (length(int_str)>=13) and ((length(int_str)<=18)) then//分析十三~十八位数的情况
begin
case Cntype of
0://普通格式
begin
if strtoint(copy(int_str,length(int_str)-5,6))=0 then//如果后面6位全是0
return:=DecimalToEnglishExt(copy(int_str,1,length(int_str)-6),0)+' Million'
else
begin
{if pos('and',LowerCase(DecimalToEnglishExt(strtoint(copy(int_str,length(int_str)-5,6)),0)))=0 then
return:=DecimalToEnglishExt(strtoint(copy(int_str,1,length(int_str)-6)),0)+' Million and '+DecimalToEnglishExt(strtoint(copy(int_str,length(int_str)-5,6)))
else}
return:=DecimalToEnglishExt(copy(int_str,1,length(int_str)-6),0)+' Million,'+DecimalToEnglishExt(copy(int_str,length(int_str)-5,6),0);
end;
end;
1://美式格式
begin
if copy(int_str,length(int_str)-11,12)='000000000000' then//如果后面十二位全是0
return:=DecimalToEnglishExt(copy(int_str,1,length(int_str)-12),0)+' Trillion'
else
return:=DecimalToEnglishExt(copy(int_str,1,length(int_str)-12),0)+' Trillion,'+DecimalToEnglishExt(copy(int_str,length(int_str)-11,12),1);
end;
2://英式格式
begin
if copy(int_str,length(int_str)-11,12)='000000000000' then//如果后面十二位全是0
return:=DecimalToEnglishExt(copy(int_str,1,length(int_str)-12),0)+' Billion'
else
return:=DecimalToEnglishExt(copy(int_str,1,length(int_str)-12),0)+' Billion,'+DecimalToEnglishExt(copy(int_str,length(int_str)-11,12),2);
end;
end;
end;
if length(int_str)>18 then//分析十八位数以上的情况
begin
case Cntype of
0://普通格式
begin
if strtoint(copy(int_str,length(int_str)-5,6))=0 then//如果后面6位全是0
return:=DecimalToEnglishExt(copy(int_str,1,length(int_str)-6),0)+' Million'
else
begin
{if pos('and',LowerCase(DecimalToEnglishExt(strtoint(copy(int_str,length(int_str)-5,6)),0)))=0 then
return:=DecimalToEnglishExt(strtoint(copy(int_str,1,length(int_str)-6)),0)+' Million and '+DecimalToEnglishExt(strtoint(copy(int_str,length(int_str)-5,6)))
else}
return:=DecimalToEnglishExt(copy(int_str,1,length(int_str)-6),0)+' Million,'+DecimalToEnglishExt(copy(int_str,length(int_str)-5,6),0);
end;
end;
1://美式格式
begin
if copy(int_str,length(int_str)-11,12)='000000000000' then//如果后面十二位全是0
return:=DecimalToEnglishExt(copy(int_str,1,length(int_str)-12),1)+' Trillion'
else
return:=DecimalToEnglishExt(copy(int_str,1,length(int_str)-12),1)+' Trillion,'+DecimalToEnglishExt(copy(int_str,length(int_str)-11,12),1);
end;
2://英式格式
begin
if copy(int_str,length(int_str)-17,18)='000000000000000000' then//如果后面十八位全是0
return:=DecimalToEnglishExt(copy(int_str,1,length(int_str)-18),2)+' Trillion'
else
return:=DecimalToEnglishExt(copy(int_str,1,length(int_str)-18),2)+' Trillion,'+DecimalToEnglishExt(copy(int_str,length(int_str)-17,18),2);
end;
end;
end;
//分析小数
if dec_str<>'' then
begin
if return='zero' then return:='point'
else return:=return+' point';
for digit:=1 to length(dec_str) do
begin
if dec_str[digit]='0' then
return:=return+' zero '
else
return:=return+' '+n[strtoint(dec_str[digit])];
end;
end;
result:=Minus+return;//成功
end;//转换结束