linux下如何搜尋字串或替換字串

2021-05-24 05:54:51 字數 716 閱讀 6144

2 在vi/vim模式下為正在編輯的檔案進行字串替換

2.1用字串

str2 替換行中首次出現的字串

str1

:s/str1/str2/ 

2.2用字串

str2

替換行中所有出現的字串

str1

:s/str1/str2/g

2.3用字串

str2

替換正文當前行到末尾所有出現的字串

str1

:.,$ s/str1/str2/g 3

替換當前

目錄下所有檔案中的

str1

為str2

。注意`

不是單引號『

sed –i「s/str1/str2/g」 `grep str1 –r1 .`

sed 是流**,s是替換的意思,用grep搜尋當前包含str1的檔案在通過sed進行處理

eg:  sed -i "s/str1/str2/g" fu_shuwu.txt

有了以上3種方式,基本上就夠用了吧

LoadRunner替換字串(可以同時替換多個)

在global.h中新增 param char dest 目標串,也就是替換後的新串 param const char src 源字串,被替換的字串 param const char oldstr 舊的子串,將被替換的子串 param const char newstr 新的子串 param int...

字串搜尋

include include include includeusing namespace std char grid 100 100 word 100 int n m int x int y int xx yy void search if k len int main int t cin t ...

字串搜尋

include include include includeusing namespace std char grid 100 100 word 100 int n m int x int y int xx yy void search if k len int main int t cin t ...