delphi下将中文数字转换为阿拉伯数字

因为项目中要用到中文转阿拉伯数字,网上找不到别人的,于是自己写了一个。


type
  TChnnum=record
    rate:integer;
    str:string;
  end;
  const chndigit:array[0..9]of Char=('零','一','二','三','四','五','六','七','八','九');

function ChnToNum (s:string):Integer;
var chnnums:array[0..3] of TChnnum ;
i,j:integer;
a,b,x:integer;
str:string ;
begin
 chnnums[0].rate:=10;chnnums[0].str:='十';
 chnnums[1].rate:=100;chnnums[1].str:='百';
 chnnums[2].rate:=1000;chnnums[2].str:='千';
 chnnums[3].rate:=10000;chnnums[3].str:='万';
//从左开始对字
str:=s;
x:=0;
i:=0;
if str[1] ='十' then begin
x:=10;
inc(i);
end;

while i

你可能感兴趣的:(delphi下将中文数字转换为阿拉伯数字)