免费注册 查看新帖 |

Chinaunix

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

awk 类型! [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-06-21 17:23 |只看该作者 |倒序浏览
写法1:echo "23001|2"|awk -F "|" '{ num=$1/10000; if(num~/^0/) {printf"%d %d\n",$1*10+1,$2;}'

写法2:echo "23001|2"|awk -F "|" '{ num=$1/10000; if(num<=0) {printf"%d %d\n",$1*10+1,$2;}'

大家猜一下 那个会输出结果。

我的是写法1 能输出。

疑问:
1 num的类型是如何变换的 ?

写法1中:num=$1/10000 我认为是 int 类型  ,num~/^0/ 变成了字符型,这地方很迷糊。

我最初的写法是第二种。

论坛徽章:
0
2 [报告]
发表于 2011-06-21 17:28 |只看该作者
你可以用perl的context的理念来理解

论坛徽章:
0
3 [报告]
发表于 2011-06-21 17:28 |只看该作者
本帖最后由 lionfun 于 2011-06-21 17:30 编辑

回复 1# kr_zhang


    写法1 写法2代码都写错了

论坛徽章:
0
4 [报告]
发表于 2011-06-21 17:40 |只看该作者
回复 1# kr_zhang


    man awk好像已经说明比较清楚了,LZ可以看看:
  
Variable Typing And Conversion
       Variables  and  fields  may  be  (floating point) numbers, or strings, or both.  How the value of a variable is
       interpreted depends upon its context.  If used in a numeric expression, it will be treated as a number, if used
       as a string it will be treated as a string.
       To  force a variable to be treated as a number, add 0 to it; to force it to be treated as a string, concatenate
       it with the null string.
       When a string must be converted to a number, the conversion is accomplished using strtod(3).  A number is  con-
       verted  to  a string by using the value of CONVFMT as a format string for sprintf(3), with the numeric value of
       the variable as the argument.

论坛徽章:
0
5 [报告]
发表于 2011-06-21 17:53 |只看该作者
回复 4# lionfun


    echo "3001|2"|awk -F "|" '{ num=$1/10000; if(num<=0) {printf"%d %d\n",$1*10+1,$2;}}'
是写错了,上面的东西我也懂,可是这个我没执行出来。

论坛徽章:
0
6 [报告]
发表于 2011-06-21 17:56 |只看该作者
回复 5# kr_zhang


    num=$1/10000 以后 num=0.3001 不小于0啊

论坛徽章:
0
7 [报告]
发表于 2011-06-21 17:59 |只看该作者
个人问题,傻了 。  让大家娱乐一下吧!不是经常写所有比较傻

论坛徽章:
0
8 [报告]
发表于 2011-06-21 18:05 |只看该作者
回复 7# kr_zhang

我以前也经常遇到,那时候脑子突然短路了!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP