C 獲得字串中某個數字的位置

2022-02-20 02:36:19 字數 460 閱讀 7229

在字串中獲得某數字位置時,可以使用string類的indexof方法,該方法用來確定指定字元在字串中的索引,如果在字串中能找到指定字元,則返回其索引,否則返回-1。在字串中獲得數字位置的關鍵**如下:string str = textbox1.text.trim();

int index = str.indexof(textbox2.text.trim());

if (index >= 0)

messagebox.show("數字" + textbox2.text + "在字串中的位置為:" + (index+1), "資訊", messageboxbuttons.ok, messageboxicon.information);

else

messagebox.show("沒有要查詢的數字", "資訊", messageboxbuttons.ok, messageboxicon.information);

sql 統計字串中某個引數的個數

code create table w word nvarchar 100 insert into w word select 去 union all select 第三方 union all select union all select 士大夫 union all select girls un...

給定字串判定字元位置,字元個數

abc21b416u 統計數字有幾個,字母有幾個?string s2 abc21b416u int count1 0 int count2 0 char chars s2.tochararray for char c chars if character.isdigit c system.out.p...

演算法筆記 統計字串中每個數字的個數

1.給定乙個數字字串 0 9 統計字串中每個數字的個數 1 輸入字串 includestring a,b cin a b 2 初始化乙個陣列,用來記錄每個字串的個數 int count 10 int i for i 0 i 10 i for i 0 i2.打牌 題目分析 1 題目中給了五種型別的牌,...