代码拉取完成,页面将自动刷新
同步操作将从 wxd_tony1984/DevelopAssistant 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using TSqlFormatter;
using TSqlFormatter.Formatters;
namespace DevelopAssistant.Format
{
public class TsqlFormatHelper
{
public static string FormatToTSQL(string strsql, bool caseWrite)
{
string result = string.Empty;
if (string.IsNullOrEmpty(strsql))
return strsql;
try
{
//bool errorsEncountered = false;
//result = SqlFormattingManager.DefaultFormat(strsql, ref errorsEncountered);
bool errorsEncountered = false;
SqlFormattingManager formaterManager = new SqlFormattingManager();
TSqlStandardFormatter formater = (TSqlStandardFormatter)formaterManager.Formatter;
formater.Options.UppercaseKeywords = caseWrite;
result = formaterManager.Format(strsql, ref errorsEncountered);
}
catch (Exception ex)
{
result = strsql;
}
return result;
}
public static string FormatToString(string strsql,bool caseWrite)
{
return FormatToTSQL(strsql, caseWrite);
}
public static string CompressToString(string strsql)
{
string result = string.Empty;
strsql = strsql.Replace("//", "");
strsql = strsql.Replace('\r', ' ');
strsql = strsql.Replace('\n', ' ');
//strsql = Regex.Replace(strsql, " +", " ", RegexOptions.None);
char[] char_array = strsql.ToCharArray();
List<char> char_list = new List<char>();
int space_count = 0;
for (int i = 0, len = char_array.Length; i < len; i++)
{
char chr = char_array[i];
if (chr == ' ')
{
space_count++;
if (space_count == 1)
{
char_list.Add(chr);
}
}
if (chr != ' ')
{
space_count = 0;
char_list.Add(chr);
}
}
result =string.Concat(char_list.ToArray());
return result;
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。