快速业务通道

读书笔记--每天一个shell--06

作者 佚名技术 来源 Linux系统 浏览 发布时间 2012-03-31

这个shell是来判断输入的数字是否为合理的浮点数

The Code

#!/bin/sh



# validfloat -- Tests whether a number is a valid floating-point value.

# Note that this script cannot accept scientific (1.304e5) notation.



# To test whether an entered value is a valid floating-point number, we

# need to split the value at the decimal point. We then test the first part

# to see if it''s a valid integer, then test the second part to see if it''s a

# valid >=0 integer, so -30.5 is valid, but -30.-8 isn''t.



. validint   # Bourne shell notation to source the validint function



validfloat()

{

  fvalue="$1"



  if [ ! -z $(echo $fvalue | sed ''s/[^.]//g'') ] ; then



    decimalPart="$(echo $fvalue | cut -d. -f1)"

    fractionalPart="$(echo $fvalue | cut -d. -f2)"



    if [ ! -z $decimalPart ] ; then

      if ! validint "$decimalPart" "" "" ; then

        return 1

      fi

    fi



    if [ "${fractionalPart%${fractionalPart#?}}" = "-" ] ; then

      echo "Invalid floating-point number: ''-'' not allowed 

        after decimal point" >&2

      return 1

    fi

    if [ "$fractionalPart" != "" ] ; then

      if ! validint "$fractionalPart" "0" "" ; then

        return 1

      fi

    fi



    if [ "$decimalPart" = "-" -o -z "$decimalPart" ] ; then

      if [ -z $fractionalPart ] ; then

        echo "Invalid floating-point format." >&2 ; return 1

      fi

    fi



  else

    if [ "$fvalue" = "-" ] ; then

      echo "Invalid floating-point format." >&2 ; return 1

    fi



    if ! validint "$fvalue" "" "" ; then

      return 1

    fi

  fi



  return 0

}





notice:

1): if [ ! -z $(echo $fvalue | sed ''s/[^.]//g'') ] 将输入,以.分成整数和小数部分.

2):if [ "${fractionalPart%${fractionalPart#?}}" = "-" ] 判断小数点后面如果接‘-’号,这输出字符不合法

3)接着的一些if语句就是判断小数及整数部分合不合法

4) valiint函数没给出,脚本不能完全执行,valiint函数是判断字符串是否全为数字.

本文出自 “你就当我是浮夸吧” 博客,请务必保留此出处http://2804976.blog.51cto.com/2794976/591504

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号