string strTxt = "吃葡萄不吐葡萄皮";
string strKey = "葡萄"; // 要搜尋字串
System.Text.RegularExpressions.MatchCollection matches = System.Text.RegularExpressions.Regex.Matches(strTxt, strKey);
foreach (System.Text.RegularExpressions.Match m in matches)
{
this.ListBox1.Items.Add(m.Index); // 把搜尋結果位置顯示於 ListBox 中
}
源自:http://ithelp.ithome.com.tw/question/10031079
沒有留言:
張貼留言