- 博客(21)
- 资源 (5)
- 收藏
- 关注
原创 正则表达式:密码由8-100个字符组成,且必须包含大写字母、小写字母、特殊字符、数字中的至少3种类型,并且不包含“abc(不区分大小写)、123”字符串。--pg数据库执行
*([Aa][BB][Cc]|123)) 意思为:不包含“abc(不区分大小写)、123”字符串。=第2个条件|第3个条件|第4个条件|第5个条件|第6个条件).第7个条件$第2-6个条件使用“|”拼接起来,表达式:第2个条件|第3个条件|第4个条件|第5个条件|第6个条件。
2024-11-13 16:33:32
433
原创 mysql分区交换存储过程(根据pre表分区字段数量来决定交换多少个分区)
mysql分区交换存储过程(根据pre表分区字段数量来决定交换多少个分区)
2023-12-04 19:13:12
517
原创 安装TortoiseSVN报错could not write value to key...verify that you have suffient access....
安装TortoiseSVN报错could not write value to key...verify that you have suffient access....windows系统权限
2022-09-15 16:35:37
3188
原创 oracle 存储过程实现月最大量、年最大量、历史最大量(不使用merge into)
oracle 存储过程实现月最大量、年最大量、历史最大量(不使用merge into)
2022-03-29 18:02:25
1585
原创 postgresql(pg)数据库regexp_replace函数的使用
例如:使用空字符替换:select regexp_replace('你好hello世界abc', '[A-Za-z]+',''),* from A 输出结果:"你好世界abc" 注意:没加参数,默认只会替换第一正则表达式出现的字符串使用空字符替换:select regexp_replace('你好hello世界abc', '[A-Za-z]+','','g'),* from A 输出结果:"你好世界" 注意:第4个参数为g,代表替换所有匹配到的字符串...
2022-03-22 10:44:32
9016
原创 使用urllib爬取起点书籍信息
使用urllib爬取起点书籍信息import urllib.requestfrom urllib import error from urllib.parse import quotefrom bs4 import BeautifulSoupfrom mylog import MyLogimport stringimport codecsimport timeimport ran...
2018-07-06 17:54:26
478
原创 使用selenium爬取淘宝商品信息
使用selenium爬取淘宝商品信息,先进入淘宝主页,在搜索那里自动输入apple,自动跳转到有关apple的页面,然后爬取信息。跳转到第二页,要先进行句柄操作,否则爬取的信息还是第一页的。from selenium import webdriverfrom selenium.webdriver.common.desired_capabilities import DesiredCapabili...
2018-07-06 17:44:35
803
原创 使用urllib爬取猫眼电影排行榜信息
爬取代码import urllib.requestfrom urllib import error from urllib.parse import quotefrom bs4 import BeautifulSoupimport timefrom mylog import MyLogclass MaoYan(object): index=None image=N...
2018-07-06 15:02:51
493
转载 python 极验验证码的识别
利用selenium破解极验滑动验证码代码来自崔大神from PIL import Imagefrom selenium import webdriverfrom selenium.webdriver import ActionChainsfrom selenium.webdriver.common.by import Byfrom selenium.webdriver.support.ui im...
2018-06-20 18:45:08
1672
1
使用urllib,request爬取ajax动态页面信息(爬取响应json文件)
2022-06-13
图书销售系统
2018-06-17
图书管理系统源码
2018-05-15
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人