系统粉 > 电脑问答 > 其他问答

已解决怎么计算一个字符串中子串的数量

提问者: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
相关问答
最新其他问答
解决方法