简体   繁体   中英

Swiftly search for multiple partial strings in a huge string

I need to check whether all parts of a string like

A=1&AW=43&KO=96&R=7&WW=15&ZJ=80

are in a big string like:

A=1&AG=77&AW=43&.....&KF=11&KO=96&.....&QW=55&R=7&....&WV=1&WW=15&....ZJ=80&

My code splits the first string on & and uses Contains . But the duration is too long, as the big string is up to 800000 characters.

Is there a better/faster method for this?

public partial class UserDefinedFunctions
{
    [Microsoft.SqlServer.Server.SqlFunction]
    public static SqlInt32 EquipmentCompare(SqlString equip, SqlString comp)         
    {
        SqlInt32 result = 1;

        if (comp.IsNull)
        {
            result = 1;
        }
        else
        {
            string equipment = "&" + equip.ToString();
            string compString = comp.ToString() + "! ";

            while (compString.Length > 1)
            {
                string sub = compString.Substring(0, compString.IndexOf("!"));
                compString = compString.Substring(compString.IndexOf("!")+1);
                string[] elements = sub.Split('&');
                foreach (string i in elements)
                {
                    if (i.StartsWith("~"))
                    {
                        if (equipment.Contains("&" + i.Substring(1) + "&"))
                        {
                            result = 0;
                            break;
                        }
                    }
                    else if (!equipment.Contains("&" + i + "&"))
                    {
                        result = 0;
                        break;
                    }
                    else
                    {
                        result = 1;
                        continue;
                    }
                }           
                if (result == 1)
                {
                    break;
                }
            }
        }
        return result;         
    }
}

I think you may speed up your code by using HashSet . Try this:

var str1 = "A=1&AW=43&KO=96&R=7&WW=15&ZJ=80";
var str2 = "A=1&AG=77&AW=43&.....&KF=11&KO=96&.....&QW=55&R=7&....&WV=1&WW=15&....ZJ=80&";

var largeStringSet = new HashSet<string>(str2.Split('&'));
var allPartsIncluded = str1.Split('&').All(s => largeStringSet.Contains(s));

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM