捐赠 | 广告 | 注册 | 发布 | 上传 | 关于我们    
  粤ICP备10103342号 DELPHI盒子 | 盒子文章 | 盒子问答悬赏 | 最新更新 | 盒子检索 | 下载中心 | 高级搜索    
  精品专区 | 繁體中文 | 奖励公告栏 | 直通车账号登陆 | 关闭GOOGLE广告 | 临时留言    
盒子资源分类
全部展开 - 全部合拢
输入小写金额变大写金额
关键字:金额 数字 汉字 财务 工具
来 自:原创
平 台:Win2K/2003/NT/XP 下载所需:0 火柴
深浅度:初级 完成时间:2021/3/28
发布者:zhanliang1217 (奖励50火柴) 发布时间:2021/4/26
编辑器:Delphi7 语  种:简体中文
分 类:其他 下载浏览:110/4999
加入到我的收藏
下载错误报错
登陆以后才能下载
 用户名:
 密 码:
自动登陆(30天有效)
图片如果打不开,说明流量不够了,请稍候下载……
输入小写金额变成大写汉字金额
Google
 
本站原创作品,未经作者许可,严禁任何方式转载;转载作品,如果侵犯了您的权益,请联系我们
龙脉加密锁 15元起 Grid++Report 报表 申请支付@网
 相关文章
没有相关文章
相关评论
共有评论2条 当前显示最后2条评论
runhorse 2021/5/4 20:57:29
只有一个可执行文件呢,没有任何参考意义啊。
aknightchen 2022/5/10 16:43:01

function fAmt2ChStr(ls:Variant): String;
var //Knight.Chen
  dx_sz,dx_dw,str_int,str_dec,dx_str,fu:AnsiString;
  a,b,b2,c,d:AnsiString;
  num_int,num_dec,len_int,i,a_int,pp:longint;
  //dx_str为返回字符串
begin

  try
    ls:=StrToFloat(ls);
    if ls>=10000000000.0 then
    begin
      Result:='[超出最大值:10万亿]';
      Exit;
    end;

  except
    Result:='[非法金额数值]';
    Exit;
  end;

  //不能超过13位

  dx_sz:='零壹贰叁肆伍陆柒捌玖';
  dx_dw:='万仟佰拾亿仟佰拾万仟佰拾元';

  //处理金额小于零情况
  if ls<0 then
  begin
    ls:=ls*(-1);
    fu:='负';
  end
  else
    fu:=';

  //取得整数值及整数串
  dx_str:=ls;
  if (ls>0)and(ls<1) then
    dx_str:='0'+dx_str;

  pp:=pos('.',dx_str);
  if pp>0 then
    str_int:=copy(dx_str,1,pos('.',dx_str)-1)
  else
    str_int:=dx_str;

  num_int:=strtoint64(str_int);
  //取得小数值及小数串
  if (ls>0)and(ls<1) then
    num_dec:=ls*100
  else
    num_dec:=Round((ls-num_int)*100);

  str_dec:=inttostr(num_dec);
  len_int:=Length(str_int);

  dx_str:=';
  //转换整数部分
  for i:=1 to len_int do
  begin
    //a为小写数字字符,b为对应的大写字符
    //c为对应大写单位,d为当前大写字符串的最后一个汉字
    a:=copy(str_int,i,1);
    a_int:=strtoint64(a);
    b:=copy(dx_sz,(a_int*2+1),2);
    c:=copy(dx_dw,((13-len_int+i-1)*2+1),2);

    if dx_str<>' then
      d:=copy(dx_str,Length(dx_str)-1,2)
    else
      d:=';

    if (b='零')and((d='零')or(b=b2)or(c='元')or(c='万')or(c='亿')) then b:=';
    if (a='0')and(c<>'元')and(c<>'万')and(c<>'亿') then c:=';
    if ((c='元')or(c='万')or(c='亿'))and (d='零')and(a='0') then
    begin
      dx_str:=copy(dx_str,1,Length(dx_str)-2);
      d:=copy(dx_str,Length(dx_str)-1,2);
      if ((c='元')and(d='万'))or((c='万')and(d='亿')) then c:=';
    end;
    dx_str:=dx_str+b+c; b2:=b;
  end;

  //吉林鲍先生说: 30万整,没有"元"显示.
  //但仍有缺陷: 比如: 30000.6, 显示为:3万6角,一样没有"元"显示
  //现在,加下面这句话,就完美了
  if (Copy(WideString(dx_str),Length(WideString(dx_str)),1)<>'元') then
  begin
    dx_str:=dx_str+'元';
  end;


  //处理金额小于1的情况
  if Length(dx_str)<=2 then dx_str:=';
  //转换小数部分
  if (num_dec<10)and(ls>0) then
  begin
    a_int:=strtoint64(str_dec);
    b:=copy(dx_sz,(a_int*2+1),2);

    if num_dec=0 then dx_str:=dx_str+'整';
    if num_dec>0 then dx_str:=dx_str+'零'+b+'分';
  end;

  if num_dec>=10 then
  begin
    a_int:=strtoint64(copy(str_dec,1,1));
    a:=copy(dx_sz,(a_int*2+1),2);
    a_int:=strtoint64(copy(str_dec,2,1));
    b:=copy(dx_sz,(a_int*2+1),2);

    if a<>'零' then a:=a+'角';
    if b<>'零' then
      b:=b+'分'
    else
      b:=';

    dx_str:=dx_str+a+b;
  end;
  if ls=0 then dx_str:='零元整';
  dx_str:=fu+dx_str;

  //函数返回字符串
  Result:=dx_str;
end;


也是网上抄来的, 我略改进了一点点.
我要发表评论 查看全部评论
 
  DELPHI盒子版权所有 技术支持:深圳市麟瑞科技有限公司 1999-2024 V4.01 粤ICP备10103342号 更新RSS列表