Home | Mirror | Search |
字元串處理命令expr用法簡介: 名稱:expr 用途:求表達式變數的值。 語法: expr Expression 實例如下: 例子1:字串長度 shell>> expr length "this is a test content"; 22 例子2:求餘數 shell>> expr 20 % 9 2 例子3:從指定位置處截取字元串 shell>> expr substr "this is a test content" 3 5 is is 例子4:指定字元串第一次出現的位置 shell>> expr index "testforthegame" s 3 例子5:字元串真實重現 shell>> expr quote thisisatestformela thisisatestformela