C# 求获取Sql各项的正则表达式代码
voidMyFun(){stringtext="select*from[admin]whereid=2";stringtable=null;//表格stringfield...
void MyFun()
{
string text = "select * from [admin] where id = 2";
string table = null; // 表格
string field = null;// 字段
string condition = null; // 条件 id=2
string order = null; // 字段
GetSqlItem(text, ref table, ref field, ref condition, ref order );
}
GetSqlItem(string text, ref string table, ref string field, ref string condition, ref string order)
{
//所需代码
// Regex.Match()
} 展开
{
string text = "select * from [admin] where id = 2";
string table = null; // 表格
string field = null;// 字段
string condition = null; // 条件 id=2
string order = null; // 字段
GetSqlItem(text, ref table, ref field, ref condition, ref order );
}
GetSqlItem(string text, ref string table, ref string field, ref string condition, ref string order)
{
//所需代码
// Regex.Match()
} 展开
2个回答
展开全部
sql的语法虽然我们平时用的就像 select * from [admin] where id = 2 这句一样,其实还有很多其他的语法也能做到的。
所以这个正则也只能是针对常规的简单SQL语句。
我写了一个,也只是判断了一些常用的SQL关键字。仅作为参考。
string text = "select * from [admin] where aa=1 and cc='b' order by aa desc ";
Regex reg = null;
reg = new Regex(@"\s+from\s+.*?(\s+where\s+|\s+order\s+|\s+group\s+)|\s+from\s+.+", RegexOptions.IgnoreCase);
string table = reg.Match(text).Value;
table = Regex.Replace(table.ToLower(), @"\s+from\s+|\s+where\s+|\[|\]|\s+order\s+|\s+group\s+", "");
reg = new Regex(@"select\s+.*?\s+from\s+", RegexOptions.IgnoreCase);
string field = reg.Match(text).Value;
field = Regex.Replace(field.ToLower(), @"select\s+|\s+from\s+|\[|\]", "");
reg = new Regex(@"\s+where\s+.*?(\s+order\s+|\s+group\s+)|\s+where\s+.+", RegexOptions.IgnoreCase);
string condition = reg.Match(text).Value;
condition = Regex.Replace(condition.ToLower(), @"\s+where\s+|\s+order\s+|\s+group\s+|\[|\]", "");
reg = new Regex(@"\s+order\s+by\s+.*?\s(desc|asc)|\s+order\s+by\s+.*?\s", RegexOptions.IgnoreCase);
string order = reg.Match(text).Value;
order = Regex.Replace(order.ToLower(),@"\s+order\s+by\s+|\[|\]", "");
还有问题可以追问或者HI我。~
所以这个正则也只能是针对常规的简单SQL语句。
我写了一个,也只是判断了一些常用的SQL关键字。仅作为参考。
string text = "select * from [admin] where aa=1 and cc='b' order by aa desc ";
Regex reg = null;
reg = new Regex(@"\s+from\s+.*?(\s+where\s+|\s+order\s+|\s+group\s+)|\s+from\s+.+", RegexOptions.IgnoreCase);
string table = reg.Match(text).Value;
table = Regex.Replace(table.ToLower(), @"\s+from\s+|\s+where\s+|\[|\]|\s+order\s+|\s+group\s+", "");
reg = new Regex(@"select\s+.*?\s+from\s+", RegexOptions.IgnoreCase);
string field = reg.Match(text).Value;
field = Regex.Replace(field.ToLower(), @"select\s+|\s+from\s+|\[|\]", "");
reg = new Regex(@"\s+where\s+.*?(\s+order\s+|\s+group\s+)|\s+where\s+.+", RegexOptions.IgnoreCase);
string condition = reg.Match(text).Value;
condition = Regex.Replace(condition.ToLower(), @"\s+where\s+|\s+order\s+|\s+group\s+|\[|\]", "");
reg = new Regex(@"\s+order\s+by\s+.*?\s(desc|asc)|\s+order\s+by\s+.*?\s", RegexOptions.IgnoreCase);
string order = reg.Match(text).Value;
order = Regex.Replace(order.ToLower(),@"\s+order\s+by\s+|\[|\]", "");
还有问题可以追问或者HI我。~
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询