c#与数据库字符串匹配的任何模式

本文关键字:任何 模式 串匹配 字符串 数据库 字符 | 更新日期: 2023-09-27 18:05:28

我需要在数据库中查找文本模式的任务的帮助。我用c#开发了一个程序。我需要搜索一个文本模式,由用户输入,这将在数据库中搜索。问题在于用户输入不需要与数据库中的字符串匹配,只需与之相似即可。下面的例子说明了这一点:

。数据库字符串是"I need to find text in database"

,用户输入为"find database need"

我希望你能理解。请帮助我在数据库字符串中找到任何模式。提前感谢!

c#与数据库字符串匹配的任何模式

生成语句的方法:

    public static string WildFindStatement( String search )
    {
        //REPLACE THE STRING WITH SQL INJECTION SAFE PARAMTERS
        //THATS ONLY FOR CONCEPT SHOWING (or at least a string buildeR)
        string sql = "select * from bla where 1=1 ";
        string  [] sa = search.Split(  new char[] {' '} );
        foreach ( var s in sa )
        {
            sql += ( " AND columBla LIKE '%" + s + "%'");
        }
        return sql;
    }

调用:

string s = WildFindStatement( "the wookies you must find" );

结果:

select * from bla where 1=1  
    AND columBla LIKE '%the%' 
    AND columBla LIKE '%wookies%' 
    AND columBla LIKE '%you%' 
    AND columBla LIKE '%must%' 
    AND columBla LIKE '%find%'