当前位置:首页 > linux教程 > 列表

linux中Shell中过滤、判断字母的例子

发布:smiling 来源: PHP粉丝网  添加日期:2015-04-21 15:06:06 浏览: 评论:0 

Shell命令编程其实就可以像我们的php程序一样写出强大的功能出来,下在我们来介绍linux中Shell中过滤、判断字母的例子,希望对大家有帮助.

在Shell中过滤、判断字母方法:

方法一:

[root@SHELL-X64 scripts]# abc=1ab8ddd90      

[root@SHELL-X64 scripts]# echo ${abc//[0-9]}

abddd

方法二:

[root@SHELL-X64 scripts]# echo $abc | sed 's#[0-9]##g'

abddd

方法三:

  1. [root@SHELL-X64 scripts]# abc=123 
  2. [root@SHELL-X64 scripts]# expr 1 + $abc  
  3. 124 
  4. [root@SHELL-X64 scripts]# echo $? 
  5. 0  --phpfensi.com 
  6. [root@SHELL-X64 scripts]# abc=23dd 
  7. [root@SHELL-X64 scripts]# expr 1 + $abc  
  8. expr: non-numeric argument 
  9. [root@SHELL-X64 scripts]# echo $?        
  10. 2

Tags: linux过滤 Shell过滤字母

分享到: