1樓:陽光的雷咩咩
static void main(string args);string p = new string[2] ;
//第一個陣列每個句子拆分後的單詞集合
//與第二個陣列有交集的
var v = strarr.where(x =>x.split(new char ).intersect(p).count() > 0);
foreach (string s in v)console.writeline(s);
console.readline();}
2樓:匿名使用者
foreach (var item in p)}
3樓:
string strarr = new string[3] ;
string p = new string[2] ;
var o = from a in strarrfrom b in p
where a.contains(b)
select a;
foreach (string item in o)console.writeline(item);
console.readkey();
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樓:喵咪咪詞碧
/// 查詢字串
//////
/// private void find_click(object sender, eventargs e)elseelse}else}}/// /// 替換字串
//////
///private void replace_click(object sender, eventargs e)/// /// 輸入查詢的字串
/////////
c#中的字串查詢函式
6樓:
1、首先,自定義一個函式,實現是否子串的判斷。
2、自定義函式中,定義一個字元陣列,儲存得到的子串。
3、如果子串為空,則輸出整個字串c。
4、用while語句迴圈判斷字串的每個字元,條件為首字元存在。
5、逐一判斷每個字元,如果字元都相等,說明存在子串,輸出得到的子串。
6、如果以字串的某字元起始判斷不存在子串,則接著判斷下一個字元。
7、定義兩個字串陣列,儲存判斷的字串。
8、最後,呼叫自定義函式,用if語句判斷是否為子串,如果結果不為空則輸出是子串,如果結果為空則輸出不是子串。
7樓:匿名使用者
indexof()方法,查詢某字串在一個字串內的位置,沒有則返回-1
string aa="abcdef";
int a=aa.indexof("bc");//a會等於1int b=aa.indexof("a");//b會等於0int c=aa.
indexof("g");c會等於-1所以你只要判斷返回出來的int值是不是小於0就知道這個字串裡有沒有包含指定的另一個字串
8樓:猴看燈
bool contain=longstr.contains("aaa");
但是這個方法是system.linq中的
所以vs2005以及以下版本是不支援的
9樓:匿名使用者
public bool isinclude(string restr, string sestr)
10樓:匿名使用者
bool string.contains(string s);
c查詢字串替換字串,c 查詢一個字串替換一個字串
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 strin...
C 實現從字串中查詢是否含有另一段字串
1.使用庫函式。strstr函式。函式名 strstr 功 能 在串中查詢指定字串的第一次出現用 法 char strstr char str1,char str2 說明 返回指向第一次出現str2位置的指標,如果沒找到則返回null。呼叫函式,判斷返回值是否等於null,決定是否輸出如 char ...
如何獲得字串最後字元,如何獲得字串最後一個字元
用string類的substring int from,int to 方法去截字串位置為from到to 1位置的字元 substring int index 方法去截字串位置index 1及以後的所有字串,注意字串的字元位置是從0開始的,substring int from int to 方法是前閉...