写在前面 只是记录一下学习过程 ... Exec 怎么说呢, 我认为的 exec 是返回 下一次 exec 的起始位置 即 lastIndex ( 对于 标志 g 全局匹配 才有大用处 ) lastIndex 是 正则表达式 实例 即 RegExp 实例 中的一个属性 表示 在源字符串 中下一次搜索 ...
分类:
编程语言 时间:
2021-03-03 12:15:10
阅读次数:
0
1. MySQL下载 官网下载地址: https://downloads.mysql.com/archives/community/ 2. 将下载的软件上传至服务器,进行解压及安装前的环境部署 [root@templates ~]# cd /server/tools/ #< 软件包上传至/serve ...
分类:
数据库 时间:
2021-03-03 12:08:01
阅读次数:
0
问题:pyhton 3安装module报错ERROR: Could not find a version that satisfies the requirement config.paths % pip install config.paths ERROR: Could not find a ve ...
分类:
编程语言 时间:
2021-03-03 11:48:53
阅读次数:
0
/* * 处理封面标题 文字竖排 * */ function get_pdf_title_cl($str){ if($str){ preg_match_all("/[0-9]{1}/",$str,$arrNum);/*检测数字数量*/ preg_match_all("/[a-zA-Z]{1}/",$ ...
分类:
Web程序 时间:
2021-03-02 11:54:38
阅读次数:
0
问题: 给定编号为0~numCourses-1 的课程,以及课程的依赖关系prerequisites 其中prerequisites[i] = [ai, bi],ai之前必须先上了bi的课程。 bi->ai 若能够上完所有的课程,给出一个上课顺序。 否则,返回空数组。 Example 1: Inpu ...
分类:
其他好文 时间:
2021-03-01 13:28:27
阅读次数:
0
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int, int> ii; typedef vector<int> vi; typedef vector<ii> vii; typedef ...
分类:
编程语言 时间:
2021-02-27 13:27:43
阅读次数:
0
1 function httpString(s) { 2 var reg = /(https?|http|ftp|file):\/\/[-A-Za-z0-9+&@#/%?=~_|!:,.;]+[-A-Za-z0-9+&@#/%=~_|]/g; 3 s = s.match(reg); 4 return ...
分类:
Web程序 时间:
2021-02-26 13:00:13
阅读次数:
0
问题: 给定二叉树,进行层序遍历,从底层向上输出。 Example 1: Input: root = [3,9,20,null,null,15,7] Output: [[15,7],[9,20],[3]] Example 2: Input: root = [1] Output: [[1]] Exam ...
分类:
其他好文 时间:
2021-02-26 12:54:45
阅读次数:
0
重新安装了adb和夜神模拟器后,启动夜神模拟器,并在控制台执行adb devices时总是提示错误: List of devices attachedadb server version (41) doesn't match this client (36); killing...* daemon ...
分类:
数据库 时间:
2021-02-24 13:25:00
阅读次数:
0
首先,我们先看文档 文档中百度翻译了一下,大意是:, 除了支持的映射参数外,不能更改现有字段的映射或字段类型。更改现有字段可能会使已编制索引的数据无效。 如果需要更改字段的映射,请使用正确的映射创建一个新索引,并将数据重新索引到该索引中。 重命名字段将使已在旧字段名下编制索引的数据无效。而是添加一个 ...
分类:
其他好文 时间:
2021-02-20 12:12:12
阅读次数:
0