主頁(yè) > 知識(shí)庫(kù) > 利用perl、python、php、shell、sed、awk、c 實(shí)現(xiàn)字符串的翻轉(zhuǎn)

利用perl、python、php、shell、sed、awk、c 實(shí)現(xiàn)字符串的翻轉(zhuǎn)

熱門(mén)標(biāo)簽:華鋒e路航港口地圖標(biāo)注 地圖標(biāo)注員都是年輕人 如果做線(xiàn)上地圖標(biāo)注 揭陽(yáng)智能電話(huà)機(jī)器人推薦 江蘇云電銷(xiāo)機(jī)器人公司 百度地圖標(biāo)注錯(cuò)了有責(zé)任嗎 打電話(huà)機(jī)器人接我是他的秘書(shū) 河南信譽(yù)好的不封卡電話(huà)外呼系統(tǒng) 客服外呼系統(tǒng)怎么樣

原題:

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)方法

標(biāo)簽:赤峰 馬鞍山 許昌 淘寶邀評(píng) 婁底 巴彥淖爾 邵陽(yáng) 金昌

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《利用perl、python、php、shell、sed、awk、c 實(shí)現(xiàn)字符串的翻轉(zhuǎn)》,本文關(guān)鍵詞  利用,perl,python,php,shell,sed,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《利用perl、python、php、shell、sed、awk、c 實(shí)現(xiàn)字符串的翻轉(zhuǎn)》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于利用perl、python、php、shell、sed、awk、c 實(shí)現(xiàn)字符串的翻轉(zhuǎn)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章