免费注册 查看新帖 |

Chinaunix

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

请教一个关于数组的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-07-23 18:36 |只看该作者 |倒序浏览
#!/usr/local/bin/bash
  A=(this is an example of shell script)
  let i=0
  for  i in $A    (这里不知道怎么写才对,请大家指点)
  do
      if [ $i -lt 6 ]
      then
          echo ${A[$i]}
      fi
          let i+=1
  done   


就是定义一个数组A ,然后按下标循环输出,请各位指点一下,该怎么办呢

论坛徽章:
0
2 [报告]
发表于 2007-07-23 19:04 |只看该作者

回复 #1 lizheng83 的帖子

这样可以吗?


  1. #!/usr/local/bin/bash
  2.   A=(this is an example of shell script);
  3. for i in ${A[*]}; do
  4. echo $i;
  5. done
复制代码

论坛徽章:
0
3 [报告]
发表于 2007-07-23 19:37 |只看该作者
  1. #!/usr/local/bin/bash
  2.   A=(this is an example of shell script)
  3.   let i=0
  4.   for  i in ${A[*]}
  5.   do
  6.       if [ $i -lt 6 ]
  7.       then
  8.           echo ${A[$i]}
  9.       fi
  10.           let i+=1
  11.   done
复制代码

输出为
./shuzu.sh: line 6: [: this: integer expression expected
./shuzu.sh: line 6: [: is: integer expression expected
./shuzu.sh: line 6: [: an: integer expression expected
./shuzu.sh: line 6: [: example: integer expression expected
./shuzu.sh: line 6: [: of: integer expression expected
./shuzu.sh: line 6: [: shell: integer expression expected
./shuzu.sh: line 6: [: script: integer expression expected[code][/code]

[ 本帖最后由 lizheng83 于 2007-7-23 19:39 编辑 ]

论坛徽章:
0
4 [报告]
发表于 2007-07-23 19:48 |只看该作者
字符串怎么能和整数比较大小呢?
我猜你的意思应该是
if [ ${#i} -lt 6 ]

论坛徽章:
0
5 [报告]
发表于 2007-07-23 19:49 |只看该作者

  1.   A=(this is an example of shell script)
  2.   let i=0
  3.   while (($i<${#A[*]}));
  4.   do
  5.       if [ $i -lt 6 ]
  6.       then
  7.           echo ${A[$i]}
  8.       fi
  9.           let i+=1
  10.   done
复制代码


for 不能那样用的

论坛徽章:
0
6 [报告]
发表于 2007-07-23 19:57 |只看该作者
能解释下
  1. ${#A[*]}
复制代码
这里什么意思吗?主要是#号

论坛徽章:
0
7 [报告]
发表于 2007-07-23 19:58 |只看该作者
原帖由 lizheng83 于 2007-7-23 19:57 发表
能解释下 ${#A
  • } 这里什么意思吗?主要是#号

  • 返回元素个数

    论坛徽章:
    0
    8 [报告]
    发表于 2007-07-23 20:01 |只看该作者
    为啥非要用数组呢,这样写不是挺好的:

    1. #!/usr/local/bin/bash
    2.   A="this is an example of shell script"
    3.   let i=0
    4.   for  i in $A
    5.   do
    6.       if [ ${#i} -lt 6 ]
    7.       then
    8.           echo $i
    9.       fi
    10.   done
    复制代码

    论坛徽章:
    0
    9 [报告]
    发表于 2007-07-23 20:34 |只看该作者
    多谢
    您需要登录后才可以回帖 登录 | 注册

    本版积分规则 发表回复

      

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

    清除 Cookies - ChinaUnix - Archiver - WAP - TOP