Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> awk 字符串連接操作(字符串轉數字,數字轉字符串)

awk 字符串連接操作(字符串轉數字,數字轉字符串)

日期:2017/2/7 14:26:19      編輯:Linux教程
 

awk中數據類型,是不需要定義,自適應的。 有時候需要強制轉換。我們可以通過下面操作完成。

一、awk字符串轉數字

 

[chengmo@centos5 ~]$ awk 'BEGIN{a="100";b="10test10";print (a+b+0);}'
110

 

只需要將變量通過”+”連接運算。自動強制將字符串轉為整型。非數字變成0,發現第一個非數字字符,後面自動忽略。

 

二、awk數字轉為字符串

[chengmo@centos5 ~]$ awk 'BEGIN{a=100;b=100;c=(a""b);print c}'
100100

 

只需要將變量與””符號連接起來運算即可。

 

三、awk字符串連接操作

[chengmo@centos5 ~]$ awk 'BEGIN{a="a";b="b";c=(a""b);print c}'
ab

 

[chengmo@centos5 ~]$ awk 'BEGIN{a="a";b="b";c=(a+b);print c}'
0

 

字符串連接操作通”二“,”+”號操作符。模式強制將左右2邊的值轉為 數字類型。然後進行操作。

Copyright © Windows教程網 All Rights Reserved