上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 35 下一页
摘要: Sheet1.Range("1:" & Sheet1.Rows.Count).Find("测试字符串").Address excel 中查找字符串并返回该单元格的位置 若字符串在查找区域是唯一的,可简单用函数解决。示例:要求在 A1:C10 区域内,查找存在字符串“str”的单元格,返回该单元 格地 阅读全文
posted @ 2021-06-15 22:46 奥兰王子 阅读(7507) 评论(0) 推荐(1) 编辑
摘要: java8 postgreSQL Oracle 1 LocalDate date 2 LocalTime time 3 LocalDateTime timestamp without timezone 4 OffsetDateTime timestamp with timezone 5 String 阅读全文
posted @ 2021-06-10 20:30 奥兰王子 阅读(9469) 评论(1) 推荐(0) 编辑
摘要: 声明 : Public m_lstBarrow As List(Of String) 'String为集合子成员数据类型 添加 : m_oSterilizeRegControl.m_lstBarrow.Add(strBarrow) 'strBarrow为赋值后的子成员 删除 : m_oSterili 阅读全文
posted @ 2021-06-10 12:53 奥兰王子 阅读(994) 评论(0) 推荐(0) 编辑
摘要: String.Replace也是全部替换。如果您需要替换复杂的内容,可以使用正则表达式。正则对复杂字串的替换效率高。C#中的正则表达式默认贪婪算法,总试图匹配更多的字符,所以若是简单的替换一个或几个字符,还是不要用比较好。Regex.Replace()需要引用System.Text.RegularE 阅读全文
posted @ 2021-06-10 05:58 奥兰王子 阅读(7758) 评论(0) 推荐(1) 编辑
摘要: 1. C#将每个单词首字母大写 private static string processing(string str)//处理这段英文的方法 { string[] strArray = str.Split("_".ToCharArray()); string result = string.Emp 阅读全文
posted @ 2021-06-09 21:09 奥兰王子 阅读(2041) 评论(0) 推荐(0) 编辑
摘要: #region 程序集 Microsoft.VisualBasic, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a // C:\Program Files (x86)\Reference Assemblies\M 阅读全文
posted @ 2021-06-09 20:46 奥兰王子 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 首先要添加引用Microsoft.VisualBasic,还要添加命名空间:using Microsoft.VisualBasic; 下面是代码: using System; using System.Windows.Forms; using Microsoft.VisualBasic; priva 阅读全文
posted @ 2021-06-09 20:44 奥兰王子 阅读(593) 评论(0) 推荐(0) 编辑
摘要: 一个软件,满足你所有的截图需求:ShareX 截图,这种再寻常不过的事情。有着很多的软件供我们选择,从直接使用键盘上的 PrintScrenn 按键,到使用 Snipaste 等第三方软件。不光截图的方式多种多样,从处理截图,到上传截图到网络,都有软件能为你服务。但是,从截图,到处理截图,再到上传截 阅读全文
posted @ 2021-06-09 12:50 奥兰王子 阅读(153) 评论(0) 推荐(0) 编辑
摘要: Microsoft Access Database Engine 2016 Redistributable https://www.microsoft.com/zh-cn/download/confirmation.aspx?id=54920 阅读全文
posted @ 2021-06-08 08:29 奥兰王子 阅读(681) 评论(0) 推荐(0) 编辑
摘要: 1. 读取 private void button1_Click(object sender, EventArgs e) { DataTable dt = GetDataFromExcelByConn(); dataGridView1.DataSource = dt.DefaultView; } D 阅读全文
posted @ 2021-06-07 20:37 奥兰王子 阅读(968) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 35 下一页