私は文字列の配列を持っています。私はJSONから取得している文字列と比較したいと思います。比較はこのようにすべきです。 例: 一方の文字列のアカウント名がGoogleで、それ以外がGoogle Incの場合、GoogleはGoogle Incの会社名の一部であるため、一致するはずです。そうでなければ。文字列のC#
私が書いたコード:
for (int i = 0; i < accountCount; i++)
{
//// account is found in the array
name[i] = account.Entities[i].Attributes["name"].ToString();
if (name[i] == message.Current.org_name)
{
flag = 1;
c.CreateOpportunity(message);
break;
}
}
//// account is not found in the array
if (flag == 0)
{
c.CreateAccount(message);
c.CreateOpportunity(message);
}
StringComparison Enumeration [ 'String.IndexOf'] (https ://msdn.microsoft.com/en-us/library/k8b1470s.aspx)と['String.Contains'](https://msdn.microsoft.com/en-us/library/dy85x1sa(v = vs。 110).aspx)はあなたの友人です。 – lamandy
あなたは 'if(name [i] .Contains(mySearchString))'をしたいと思います。 – HimBromBeere
@HimBromBeereそれは完璧です – vidhi