C替換文字中的指定字元,C 替換乙個文字中的指定字元

時間 2021-10-14 22:38:41

1樓:

string.format

2樓:匿名使用者

string path = @"123.txt";//檔案路徑

string con = "";

filestream fs = new filestream(path, filemode.open, fileaccess.read);

streamreader sr = new streamreader(fs);

con = sr.readtoend();//讀取檔案內的內容

con=con.replace("123456789", "9527");//讀取後替換

sr.close();

fs.close();

filestream fs2 = new filestream(path, filemode.open, fileaccess.write);

streamwriter sw = new streamwriter(fs2);

sw.writeline(con);//新內容寫入檔案

sw.close();

fs2.close();

3樓:匿名使用者

string 類中有乙個 substring 和 indexof 這兩個方法 你一看就好了 直接替換掉了就

c#中怎樣從指定字串中查詢並替換字串?

4樓:

stringtxt="asdjsfk/aaaaaaaaa";

判斷這個字串中包含替換/,

就在斜槓前面加上字元『x』

1、使用if語句

if(txt.contains("/"))2、使用條件運算子(?:)

txt=txt.contains("/")?txt.replace("/","x/"):txt;

擴充套件資料stringreplace(替換的目標,替換的字串),返回值是替換後的字串

stringstr="11xx1111x";

console.writeline("原字串是:",str);

console.write("請輸入需要替換的字串:");

stringoldstr=console.readline();

console.write("請輸入替換的字串:");

stringnewstr=console.readline();

str=str.replace(oldstr,newstr);

console.writeline("替換後的字串:",str);

5樓:安全管理人

using system;

using system.collections.generic;

using system.componentmodel;

using system.data;

using system.drawing;

using system.linq;

using system.text;

using system.windows.forms;

#region

#endregion

namespace find

int start = 0;

int count = 0;

////// 查詢字串

//////

///private void find_click(object sender, eventargs e)

else

else

}else}}

////// 替換字串

//////

///private void replace_click(object sender, eventargs e)

////// 輸入查詢的字串

//////

///private void txt_find_textchanged(object sender, eventargs e)}}

實驗結果:

6樓:喵咪咪詞碧

/// 查詢字串

//////

/// private void find_click(object sender, eventargs e)elseelse}else}}/// /// 替換字串

//////

///private void replace_click(object sender, eventargs e)/// /// 輸入查詢的字串

/////////

C中怎樣從指定字串中查詢並替換字串

stringtxt asdjsfk aaaaaaaaa 判斷這個字串中包含替換 就在斜槓前面加上字元 x 1 使用if語句 if txt.contains 2 使用條件運算子 txt txt.contains txt.replace x txt 擴充套件資料stringreplace 替換的目標,替...

用bat做字元替換,bat替換指定行的內容中,指定的字串

你可以在乙個excel中,替換一遍,在替換前,開啟錄製巨集的功能。這樣就可以將要做的事全部錄下來,儲存下來。再用這個帶 巨集 的excel開啟另外一些excel檔案,執行巨集就成了。巨集錄製,在工具 巨集 錄製巨集 回答你補充的問題,因為沒看到你的原始檔案,不知它的結構是如何,如果沒有區別於其它的唯...

EXCEL替換文字的時候怎麼加行

第一行 char 10 第二行 單元格的格式應該設定為 對齊 自動換行 所有這些要替換單元格的內容都是一樣的嗎?如果是一樣的,那就簡單多了 查詢替換,輕鬆搞定。也可以完乙個以後,按ctrl 回車。如果內容不一樣 比如說有第2行第3行等等 可以在word中迂迴處理。因為這裡的兩個行是不一樣的,第1個之...