Chinaunix首页 | 论坛 | 博客
  • 博客访问: 103683327
  • 博文数量: 19283
  • 博客积分: 9968
  • 博客等级: 上将
  • 技术积分: 196062
  • 用 户 组: 普通用户
  • 注册时间: 2007-02-07 14:28
文章分类

全部博文(19283)

文章存档

2011年(1)

2009年(125)

2008年(19094)

2007年(63)

分类:

2008-04-18 22:48:28

作者:KornLee   
#!/bin/bash
#penny_ccf@hotmail.com

#it's ugly, but it works 


cconvert(){

declare -a cnum;
declare -a cmag;

cnum[1]=""
cnum[2]=""
cnum[3]=""
cnum[4]=""
cnum[5]=""
cnum[6]=""
cnum[7]=""
cnum[8]=""
cnum[9]=""
cnum[0]=""

cmag[0]=""
cmag[1]=""
cmag[2]=""
cmag[3]=""
cmag[4]=""
cmag[5]=""
cmag[6]=""
cmag[7]=""


tempalpha="$1";
ctempmag=$2;
if [ $tempalpha == "00000000" ]  then
CSTR="";
return 0;
fi
let templength="${#tempalpha}";

CSTR="";
for ((m=0;mdo 
tempi=${tempalpha:m:1};
let tempj="$templength-$m-1";

if ((( tempi == 0 )) && (( tempj ==4 ))); then
CSTR=$CSTR"";
elif (( tempi == 0 )); then
CSTR=$CSTR${cnum[0]};
else
CSTR=$CSTR${cnum[$tempi]}${cmag[$tempj]};
fi

done

CSTR=$(echo $CSTR | sed -e 's/零零*/零/g' -e 's/零$//g' -e 's/零零零万//g');
CMAG="";
for ((m=0;mdo 
CMAG=$CMAG"亿";
done

CSTR=$CSTR$CMAG;
}

alpha=$1;
length=${#alpha};
let k="$length/8";
let modl="$length%8";
MYSTR="";

tempstr=${alpha:0:$modl};
if ((modl>0)); then cconvert $tempstr $k; fi

MYSTR=$MYSTR$CSTR;
for ((i=0;ido
  let pos="$i*8+modl";
  tempstr=${alpha:$pos:8};
  let tempmag="$k-$i-1";
  cconvert $tempstr $tempmag;
  MYSTR=$MYSTR$CSTR;
done  

echo $MYSTR | sed -e 's/亿零万/亿零/g'  -e 's/零万/万/g' -e 's/零亿/亿/g' -e 's/零零*/零/g' -e 's/零$//g'
阅读(281) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~