Shell中實現字串反轉方法分享_linux shell

來源:互聯網
上載者:User

在做關鍵詞清洗過程中,需要將一類不符合某個字結尾的詞過濾出來,思路是把這一批詞按最後一個字排序,於是想到了先把這些詞反轉一下,如把12345轉為54321,好像以前在夜息的文章裡看過用shell可以實現,就百度了一下,找到幾個可行的解決方案,現記錄一下。

shell實現字串反轉,一句命令搞定!

複製代碼 代碼如下:

cat keywords.txt|while read line;do echo $line|rev;done

命令的:

複製代碼 代碼如下:

echo 12345|rev

54321

python 的:

複製代碼 代碼如下:

echo 12345|python -c ‘print raw_input()[::-1]'

sed 的:

複製代碼 代碼如下:

echo 12345|sed ‘/\n/!G;s/\(.\)\(.*\n\)/&\2\1/;//D;s/.//'

awk 的:

複製代碼 代碼如下:

echo 12345|awk ‘BEGIN{FS=””}{for(a=NF;a>0;a–)printf(“%s”,a==1?$a”\n”:$a)}'

純 bash 的:

複製代碼 代碼如下:

echo 12345|{ read;for((i=${#REPLY};i>0;i–))do echo -n “${REPLY:$[i-1]:1}”;done;echo; };

c 的:

複製代碼 代碼如下:

gcc -o a -O2 -x c <(cat <<! #include <stdio.h> #include <stdlib.h> #include <string.h> int main(int argc,char *argv[]) { if(argc != 2) { printf("%s reverse lines of a string\n",argv[0]); exit(1); } int i=0; char *p; p=argv[1]; i=strlen(argv[1])-1; for(i;i>=0;i--) { printf("%s%s",&p[i],(i==0)?"\n":""); p[i]='\0'; } })&& ./a "12345" ;rm -f a

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.