係統粉 > 電腦問答 > 其他問答

已解決怎麼計算一個字符串中子串的數量

提問者:18635717  |  瀏覽次  |  提問時間:2017-02-18  |  回答數量:2

怎麼計算一個字符串中子串的數量 int子串數量 = 0 If txt文本框.Text.Length > 0 Then If txt子串.Text.Length > 0 Then...

已有2條答案
z844967772

z844967772

回答數:55  |  被采納數:142

int子串數量 = 0 If txt文本框.Text.Length > 0 Then If txt子串.Text.Length > 0 Then Dim int起始位置 As Integer = 0 Dim int終止位置 As Integer = txt文本框.Text.Length If txt文本框.Text.Contains(txt子串.Text) Then Do While txt文本框.Text.Substring(int起始位置).Contains(txt子串.Text) int起始位置 = txt文本框.Text.IndexOf(txt子串.Text, int起始位置) + txt子串.Text.Length int子串數量 += 1 Loop Else int子串數量 = 0 End If End If End If lbl子串數量.Text = "子串數量:" & int子串數量
2017-02-18 16:27:24
讚 5
嘿丿伱de益達灬

嘿丿伱de益達灬

回答數:113  |  被采納數:101

strlen函數直接求得字符串的長度。
2017-02-18 14:01:36
讚 11
相關問答
最新其他問答
解決方法