免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1204 | 回复: 2
打印 上一主题 下一主题

关于数字判断的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-05-11 11:41 |只看该作者 |倒序浏览
  1. check()
  2. {
  3.    case "$1" in
  4.        *[!0-9]*) echo "no"
  5.                  ;;
  6.        *       ) echo "check $1"
  7.                  ;;
  8.    esac


  9. }

  10. check2()
  11. {
  12.     if [[ $1 =~ *[!0-9]* ]];then
  13.         :
  14.     else
  15.         echo "check2 $1"
  16.     fi
  17. }

  18. check3()
  19. {
  20.     if [[ $1 =~ ^[0-9]+$ ]];then
  21.         echo "check3 $1"
  22.     fi
  23. }
复制代码
请问下 为什么 *[!0-9]*在check 和check2里的表现不同,个人理解*[!0-9]*写法应该是不正确才对的,但是在check里面又能正确判断出数字

论坛徽章:
2
射手座
日期:2014-10-10 15:59:4715-16赛季CBA联赛之上海
日期:2016-03-03 10:27:14
2 [报告]
发表于 2012-05-11 12:36 |只看该作者
回复 1# 413xp


   
       [...]  Matches any one of the enclosed characters.  A pair of characters separated by a hyphen denotes a
              range expression; any character that sorts between those two  characters,  inclusive,  using  the
              current  localeâs  collating sequence and character set, is matched.  If the first character fol-
              lowing the [ is a !  or a ^ then any character not enclosed is matched
.   The  sorting  order  of
              characters  in range expressions is determined by the current locale and the value of the LC_COL-
              LATE shell variable, if set.  A - may be matched by including it as the first or  last  character
              in the set.  A ] may be matched by including it as the first character in the set.

论坛徽章:
0
3 [报告]
发表于 2012-05-11 16:03 |只看该作者
看的不太明白了,谢谢了,
经过测试,check2里面,不管是字符还是数字,它永远是false,不管那个了,最好的写法应该是check3吧,记住这个就算了回复 2# yinyuemi


   
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP