1樓:
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);
2樓:安全管理人
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)}}
實驗結果:
3樓:喵咪咪詞碧
/// 查詢字串
//////
/// private void find_click(object sender, eventargs e)elseelse}else}}/// /// 替換字串
//////
///private void replace_click(object sender, eventargs e)/// /// 輸入查詢的字串
/////////
c 中,輸入兩個字串,怎樣在串中查詢並刪除串,並且是不區分大小寫的查詢
include 字串匹配,在主串中刪除子串int main str2 512 scanf s str1 主串scanf s str2 子串int len1 length str str1 int len2 length str str2 int count 0 匹配次數int index 10 子串...
c中如何計算字串中某個指定字元的個數
幸運的雨祭 使用函式indexof 來檢索字串中所需要的字元出現的次數。如下 class program static void main string args 統計出字串中,下雪出現的次數 string text 今天下雪了嗎,明天不會下雪了吧,什麼時候才不下雪啊,我要去上學啊!string k...
excel中如何查詢某列所包含指定字串並將指定字串返回到對應列
愛精彩人生 1.如圖建立學校簡稱列表 2.b2公式 index f f,max if iferror find f 2 f 5,a2 0 0,row f 2 f 5 ctrl shift 回車,下拉。3.如果學校名錄不多,公式也可以為 choose max if iferror find a2 0 ...