linux常用命令-expr 计算字串长度等

指令名称:expr

功能介绍:可以对字符串进行各种处置

语法格式:expr

常用参数说明:

指令使用实例:

1.字串长度

shell>>exprlength"thisisatest"

14

2.数字商数

shell>>expr14%9

5

3.从位置处抓取字串

shell>>exprsubstr"thisisatest"35

isis

4.数字串onlythefirstcharacter

shell>>exprindex"testforthegame"e

2

5.字串真实重现

shell>>exprquotethisisatestformela

thisisatestformela

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u2/82877/showart_1675426.html

相关推荐