'列数转字母 Public Function CNtoW(ByVal number As Long) As String CNtoW = Replace(Cells(1, number).Address(False, False), "1", "") End Function '字母转列数 Publ ...
分类:
编程语言 时间:
2020-06-05 11:38:33
阅读次数:
93
本地电脑需要同步远程数据,安装syncthing 测试 1:下载 wget https://github.com/syncthing/syncthing/releases/download/v1.5.0/syncthing-linux-amd64-v1.5.0.tar.gz Syncthing 默认 ...
分类:
其他好文 时间:
2020-06-04 13:54:04
阅读次数:
138
看到几 个方法,在此记录一下: 方法一 (可生成索引):(未验证可行性 转自:https://blog.csdn.net/happyflystone/article/details/4538254 ) /* exec sp_autoIdx ‘1’ 直接生成索引 or exec sp_autoIdx ...
分类:
数据库 时间:
2020-06-04 10:19:03
阅读次数:
82
核心:更新视图不重新请求页面。 路由的hash模式和history模式。 看上去,hash模式就比history模式多了一个#。无论是hash模式还是history模式,在发生改变的时候,浏览器都会新增一个记录,我们就是通过这个记录来实现更新视图但是重新请求页面。 hash("#") 的作用是加载 ...
分类:
其他好文 时间:
2020-06-04 01:45:19
阅读次数:
75
#!/usr/local/bin/python3.7 """ @File : str_replace.py @Time : 2020/06/03 @Author : Mozili """# 输入多行字符串 data = [] str = input('输入要调整的字符串:\n') data.appe ...
分类:
编程语言 时间:
2020-06-03 17:22:21
阅读次数:
100
Idea 添加注释:类注释、方法注释类注释方法注释类注释File–Setting–Editor–File and Code Templates–Class:注释模板: /** * *@description: *@author: Andy *@time: ${DATE} ${TIME} * */ 操 ...
分类:
其他好文 时间:
2020-06-02 18:49:12
阅读次数:
104
微信小程序在ios系统中,无法获取时间对象 原因是ios系统中,new Date()中的时间格式不能用 " - " 连接,应该用 " / "连接.否则会出现NaN 可用正则将原字符串中的横线替换为斜线 例如:"2019-01-01 00:00:00".replace(/\-/g, '/') ...
分类:
微信 时间:
2020-06-01 14:14:29
阅读次数:
80
原因16.04升级到18.04 解决方法。 open /etc/initramfs-tools/conf.d/resume replace RESUME=UUID=xxx with RESUME=none issue sudo update-initramfs -u reboot your syst ...
分类:
其他好文 时间:
2020-06-01 13:36:12
阅读次数:
88
0. 字符串常用方法 a.查找_替换_统计 find() 掌握 注意: 找不到子串时,返回-1 rfind() 了解 index() 了解 注意: 找不到子串时,程序会崩溃,产生一条异常信息,导致程序无法执行 rindex() 了解 replace() 掌握 默认全部替换 count() 掌握 b. ...
分类:
其他好文 时间:
2020-05-31 11:17:02
阅读次数:
72
replace生成了新的对象,对原始对象没有改动。 ...
分类:
编程语言 时间:
2020-05-31 00:48:17
阅读次数:
59