上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 53 下一页
摘要: 使用到的jar包: mail.jar(29th) activation.jar(2fmo) Java实现纯文本邮件发送 1 package org.westos.email; 2 3 import com.sun.mail.util.MailSSLSocketFactory; 4 5 import 阅读全文
posted @ 2020-12-05 19:12 博二爷 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 一: 1 import re 2 3 s = '1123*#$ 中abc国' 4 str = re.sub('[a-zA-Z0-9’!"#$%&\'()*+,-./:;<=>?@,。?★、…【】《》?“”‘’![\\]^_`{|}~\s]+', "", s) 5 # 去除不可见字符 6 str = 阅读全文
posted @ 2020-12-04 09:23 博二爷 阅读(1689) 评论(0) 推荐(0) 编辑
摘要: 语句删除: match (n) detach delete n 阅读全文
posted @ 2020-12-03 16:36 博二爷 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 一,下载工具 可以到官方网站上下载桌面版或者community版本的,下载地址:https://neo4j.com/, 安装好。 快速下载地址:http://doc.we-yun.com:1008/neo4j 二、配置环境变量 本文参考了http://blog.csdn.net/appleyk/ar 阅读全文
posted @ 2020-12-03 16:14 博二爷 阅读(1425) 评论(0) 推荐(0) 编辑
摘要: 代码: 1 window.alert = function() { 2 return false; 3 } 阅读全文
posted @ 2020-12-03 09:34 博二爷 阅读(775) 评论(0) 推荐(0) 编辑
摘要: 直接在后面添加: 1 TEXT=res.text.encode('raw_unicode_escape').decode('unicode_escape') 阅读全文
posted @ 2020-12-02 19:35 博二爷 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 模式匹配主要的功能类似于我之前根据词性进行摘取单词一样,就是通过字典去摘取这些单词 类似于这样的效果 代码: 1 # # -*- coding:utf-8 -*- 2 # @Time : 2020/11/28 20:24 3 # @Author : 周博 4 # @File : test_3.py 阅读全文
posted @ 2020-11-28 20:31 博二爷 阅读(383) 评论(0) 推荐(0) 编辑
摘要: delete from QYTSCYJD_GXJSCYH_STGTB100187 where rowid not in (select rowid from QYTSCYJD_GXJSCYH_STGTB100187 where rownum<=5); 阅读全文
posted @ 2020-11-28 20:02 博二爷 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 1 function GetRequest() { 2 var urlStr=location.href; 3 if (typeof urlStr == "undefined") { 4 var url = decodeURI(location.search); //获取url中"?"符后的字符串 阅读全文
posted @ 2020-11-26 14:14 博二爷 阅读(853) 评论(0) 推荐(0) 编辑
摘要: 简介: pyahocorasick是个python模块,由两种数据结构实现:trie和Aho-Corasick自动机。 Trie是一个字符串索引的词典,检索相关项时时间和字符串长度成正比。 AC自动机能够在一次运行中找到给定集合所有字符串。AC自动机其实就是在Trie树上实现KMP,可以完成多模式串 阅读全文
posted @ 2020-11-24 23:45 博二爷 阅读(6475) 评论(0) 推荐(0) 编辑
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 53 下一页