c查詢字串替換字串,c 查詢一個字串替換一個字串

2022-03-21 22:36:17 字數 568 閱讀 7067

1樓:柴沛文

string s = "";

int i = s.indexof("<");

int j = s.indexof(">");

string s1 = s.substring(i, j - i + 1);

int j2 = s.indexof(">", j + 1);

string s2 = s.substring(j + 1, j2 -j);

int j3 = s.indexof(">", j2 + 1);

string s3 = s.substring(j2 + 1, j3 - j2);

console.writeline(s1.replace("\"url\"", "\"good\""));

console.writeline(s2.replace("\"url\"", "\"strong\""));

console.writeline(s3.replace(" ", " alt=\"good\" "));

2樓:紅樓花霧

用ctrl+f組合鍵試試!

C 實現從字串中查詢是否含有另一段字串

1.使用庫函式。strstr函式。函式名 strstr 功 能 在串中查詢指定字串的第一次出現用 法 char strstr char str1,char str2 說明 返回指向第一次出現str2位置的指標,如果沒找到則返回null。呼叫函式,判斷返回值是否等於null,決定是否輸出如 char ...

查詢字串在另外字串中第一次出現的地址

include include 找到返回pat在str出現的位置是第幾個字元 找不到返回 1 int my search const char str,const char pat int main 回答 include lt iostream gt include lt string gt usi...

linq符串查詢,linq 字串查詢

static void main string args string p new string 2 第一個陣列每個句子拆分後的單詞集合 與第二個陣列有交集的 var v strarr.where x x.split new char intersect p count 0 foreach stri...