2012年11月8日 星期四

C# 包含字串

前言:找a字串中是否包含b字串資料;
string a = "ahorng全球服務網";
string b = "ahorng";
if(a.IndexOf(b)>-1)
{
Console.WriteLine("字符串A中包含字符串B");
}


//使用以下程式設定只可以在某一區執行
...
int num = 1;
foreach (IPAddress ipaddress in iphostentry.AddressList)
{
ListViewItem lviResult = lvResults.Items.Add("IP #" + num + ": " + ipaddress.ToString());
if (lviResult.Text.IndexOf("10.1.1.") > -1)
{
//字符串A中包含字符串B
lviResult.SubItems.Add("ok");
}

num = num + 1;
}


延伸閱讀: 使用word開啟網頁資料,可以將網頁下載存成WORD檔.

沒有留言:

Search Google

Google

熱門文章