原題:
Q:有a.txt文件,里面內(nèi)容如下 1234569 abcABCabc 要求使用awk打印出以下結(jié)果 987654321 cbaCBAcba
A:
shell :[root@vps tmp]# rev a.txt 9654321 cbaCBAcba
perl : [root@vps tmp]# perl -nle ‘print scalar reverse $_;' a.txt 9654321 cbaCBAcba
awk: [root@vps tmp]# awk ‘{num=split($0,arr,”");for(i=num;i>0;i–){printf arr[i];if(i==1){printf “\n”}}}' a.txt 9654321 cbaCBAcba
php: [root@vps tmp]# php -r ‘$fp=fopen(“a.txt”,”r”);while(!feof($fp)){ echo strrev(fgets($fp,999));} echo “\n”;;' 9654321 cbaCBAcba
sed: [root@vps tmp]# sed ‘/\n/!G;s/\(.\)\(.*\n\)/\2\1/;//D;s/.//' a.txt 9654321 cbaCBAcba
python: (方法之一)
>>> arr='hello'
>>> arr[::-1]
‘olleh'
(方法二)
>>> str='hello'
>>> tmp=”
>>> for s in reversed(str):
… tmp+=s
…
>>> print tmp
olleh
reverse.h
#ifndef _reverse_h
int getLine(char s[],int limit);
void reverse(char s[]);
#endif
int getLine(char s[],int limit)
{
int c,i ;
for(i =0; ireverse.c
#include "stdio.h"
#include "/Users/chenqing/tmp/reverse.h"
#define MAXLINE 1000
/*
reverse a string use c langusge
*/
int main(void)
{
int len;
char line[MAXLINE];
if((len = getLine(line,MAXLINE)) > 0){
reverse(line);
printf("%s",line);
}
return 0;
}
gcc reverse.c -o reverse
Qing:tmp chenqing$ echo "ChinaCache" |./reverse
ehcaCanihC上面就是利用這些實(shí)現(xiàn)我們?cè)诮K端命令行下實(shí)現(xiàn)字符串翻轉(zhuǎn)的例子,哈哈,其實(shí)還是perl實(shí)現(xiàn)起來(lái)比較爽啊。
您可能感興趣的文章:- python中實(shí)現(xiàn)字符串翻轉(zhuǎn)的方法
- python3翻轉(zhuǎn)字符串里的單詞點(diǎn)的實(shí)現(xiàn)方法