模仿csdn的代码,己整理的Linux常用命令(5)
//要替换的敏感字 string SqlStr =
@\r|char|asc|mid|substring|master|truncate|declare|xp_cmdshell|restore|backup|net +user|net +localgroup +administrators\ try {
if ((inputString != null) && (inputString != String.Empty)) {
string str_Regex = @\
Regex Regex = new Regex(str_Regex, RegexOptions.IgnoreCase); //string s = Regex.Match(inputString).Value;
MatchCollection matches = Regex.Matches(inputString); for (int i = 0; i < matches.Count; i++)
inputString = inputString.Replace(matches[i].Value, \matches[i].Value + \
} } catch {
return \ }
return inputString; } ///
/// 将已经替换成的\敏感字]\,转换回来为\敏感字\/// /// ///
public string MyDecodeOutputString(string outputstring) {
//要替换的敏感字 string SqlStr =
@\r|char|asc|mid|substring|master|truncate|declare|xp_cmdshell|restore|backup|net +user|net +localgroup +administrators\ try {
if ((outputstring != null) && (outputstring != String.Empty)) {
string str_Regex = @\
Regex Regex = new Regex(str_Regex, RegexOptions.IgnoreCase); MatchCollection matches = Regex.Matches(outputstring); for (int i = 0; i < matches.Count; i++)
outputstring = outputstring.Replace(matches[i].Value, matches[i].Value.Substring(1, matches[i].Value.Length - 2));
} } catch {
return \ }
return outputstring; }
#endregion
void CAngle::drawInfo(QPainter &Pt) {
QPoint midPt = ((m_ptArray[1] + m_ptArray[2]))/2; QString str_angle;
QString str_1 = \ QString str_2 = \ QFont myFont;
QFontMetrics fm(myFont);
qDebug() << __func__ <<\ int width = 0; int width1 = 0; int heigh = 0;
double x1 = m_ptArray[0].x()-m_ptArrayx(); double y1 = m_ptArray[0].y()-m_ptArrayy(); double x2 = m_ptArrayx()-m_ptArrayx(); double y2 = m_ptArrayy()-m_ptArrayy(); double x = x1*x2 + y1*y2; double y = x1*y2 - x2*y1;
angle = 180 / (M_PI /acos(x / (sqrt(pow(x,2) + pow(y,2)))));
str_angle.setNum(angle); width = fm.width(str_angle); width1 = fm.width(str_2); heigh = fm.height() * 3;
QRect rectinfo(midPt.x(),midPt.y(),width + width1,heigh); Pt.setPen(ang_info_pen);
Pt.drawRoundedRect(rectinfo,5,5);
Pt.drawText(rectinfo,Qt::AlignCenter,QString(\\ }
void CAngle::mousePressEvent(QMouseEvent *event) {
switch(countClick){ case 0: {
m_ptArray.push_back(event->pos()); m_ptArray.push_back(event->pos()); m_ptArray.push_back(event->pos()); countClick++;
CDrawWin::m_curDrawStatus = CDrawWin::DRAW_STATUS_DRAWING; }
break; case 1: {
m_ptArray[1] = event->pos(); countClick++;
CDrawWin::m_curDrawStatus = CDrawWin::DRAW_STATUS_DRAWING; }
break;
…… 此处隐藏:255字,全部文档内容请下载后查看。喜欢就下载吧 ……相关推荐:
- [政务民生]2013年公共基础知识热点问题(七)
- [政务民生]检验检测机构资质认定评审准则及释义20
- [政务民生]关于印发重庆市房屋建筑和市政基础设施
- [政务民生]1、隧道洞身开挖支护施工技术交底书
- [政务民生]2015年山东省17地市中考语文试题分类汇
- [政务民生]2-高级会计师资格考试和评审流程图
- [政务民生]2018版中国清分机行业发展分析及前景策
- [政务民生]新课改高中政治探究
- [政务民生]2018-2024年中国新型组合房屋行业投资
- [政务民生]2015年上海市春季高考数学模拟试卷五
- [政务民生]灌砂法及环刀法测压实度(带计算过程)
- [政务民生]运筹学实验2求解非线性规划
- [政务民生]劝学、逍遥游默写(教师卷)
- [政务民生]《运筹学》 - 期末考试 - 试卷A - 答案
- [政务民生]八年级英语下册 Module 6 Hobbies测试
- [政务民生]2019年宪法知识竞赛试题库100题(含答
- [政务民生]自动化英文文献翻译
- [政务民生]公文格式实施细则
- [政务民生]高一地理上册课堂跟踪练习题6
- [政务民生]会计继续教育习题及答案
- 第三章 无约束最优化方法
- 泛读教程第三册答案
- 魏晋南北朝文学
- 幂的运算复习题
- 城市环境问题的成因与治理策略_以社会
- 钢结构行业产业链及竞争分析研究
- 新型热塑性弹性体增韧聚丙烯的研究
- 中国旅游地理B卷试题及答案
- (苏教版)五年级数学上册第三单元测试卷
- 不稳定性心绞痛诊断与治疗
- 俞氏国际后勤职能部门绩效考核办法
- GB7258-2017新标准考试题含答案
- 小学生汉字听写比赛活动方案
- 1.3《平抛运动》学案 教科版必修2
- 2011香港特别行政区公务员考试复习资料
- 考虑水力条件变化的城市给水管网可靠性
- 表面活性剂在油田开发和生产中的应用
- ITT内部培训资料-FI端吸泵的介绍
- 文明守纪,从我做起学生发言稿
- 初中读《聊斋志异》心得体会800字范文




