11 2023 档案
摘要:转载自:SQLServer字符串查找(判断字符串是否含中文,数字或字母),并把是否含中文作为条件来执行一些操作 - 亟待! - 博客园 (cnblogs.com) 从sqlserver中提取数据如何截取字符 1、LOCATE(substr , str ):返回子串 substr 在字符串 str 中
阅读全文
摘要:string str = “AAAA bbb shsh slsls”; string[] arrContent = Regex.Split(str , @"\s{1,}"); //split by spaces(one or more)
阅读全文
摘要:1. 窗体起始位置Position 设置 (1) 窗体起始位置为顶部中间,WinForm居中显示: int x = (System.Windows.Forms.SystemInformation.WorkingArea.Width - this.Size.Width) / 2; int y = (S
阅读全文