码迷,mamicode.com
首页 >  
搜索关键字:re    ( 14383个结果
memmove库函数模拟实现
//第一次尝试:#include<stdio.h> #include<stdlib.h> void* myMemmove(void* destin, const void* source,size_t num) { if (destin == NULL || source == NULL) { re ...
分类:其他好文   时间:2020-11-24 12:25:30    阅读次数:7
python爬虫项目讲解(scrapy-re)
本文的文字及图片来源于网络,仅供学习、交流使用,不具有任何商业用途,版权归原作者所有,如有问题请及时联系我们以作处理 以下文章来源于腾讯云 作者:py3study ( 想要学习Python?Python学习交流群:1039649593,满足你的需求,资料都已经上传群文件流,可以自行下载!还有海量最新 ...
分类:编程语言   时间:2020-11-23 12:46:25    阅读次数:31
nodejs之fs模块
1、引入fs模块 const fs = require('fs'); 2、常用方法 1、fs.stat 检测是文件还是目录 检测文件or目录是否存在 检测是文件还是目录 fs.stat('./test.html',(err,data)=>{ if(err){ console.log(err); re ...
分类:Web程序   时间:2020-11-23 12:21:53    阅读次数:12
git提交代码到远程仓库github
首先,如果是新手,未在github上配置过ssh的,最好按照网上教程配置一下ssh,此处不赘述! (1)在github新建一个远程仓库,填写仓库名,提交本地完整代码到远程,最好新建的是一个空仓库,所以下图三个选项建议不要勾选 (2)新建仓库完成后,便是将本地与远程仓库连接起来,使用命令 git re ...
分类:其他好文   时间:2020-11-21 12:24:01    阅读次数:7
TypeError: react__WEBPACK_IMPORTED_MODULE_2___default.a.createClass is not a function
在看阮一峰的react入门的时候,写到一段代码,但是写完就报错了,经过多方查找,终于解决掉了 错误描述: 解决方法: 将React.createClass换成React.Component, 但是不知道为什么这样就不报错了 (^._.^)? 文章地址:https://toddmotto.com/re ...
分类:Web程序   时间:2020-11-21 12:12:27    阅读次数:15
reg
# -*- coding: utf-8 -*- import SimpleITK as sitk import matplotlib.pyplot as plt import time import os import sys import re import csv import numpy as ...
分类:其他好文   时间:2020-11-21 11:45:47    阅读次数:4
解决sql server保存对象字符串转换成uniqueidentifier失败的问题
一、背景介绍web应用采用的是ssh框架,数据库使用的sqlserver2014版本。二、问题:客户要求,ID列的数据类型必须是uniqueidentifier,一开始实体类的ID设计成java.lang.String类型;映射文件中ID的增长方式是uuid.hex123456789privatejava.lang.Stringid;publicjava.lang.StringgetId(){re
分类:数据库   时间:2020-11-20 12:06:33    阅读次数:9
【随手记录】关于Factory method 'eurekaApplicationInfoManager' threw exception; nested exception is java.lang.NullPointerException
最近项目上部署程序时候报eureka相关的NPE错误,如下: Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. 2020- ...
分类:移动开发   时间:2020-11-20 11:50:24    阅读次数:17
攻防世界RE 6.getit
菜鸡发现这个程序偷偷摸摸在自己的机器上搞事情,它决定一探究竟 下载得到未加壳的64位ELF文件 进入ida64 /*这里复习一下文件函数的用法 https://blog.csdn.net/weibo1230123/article/details/79110542?ops_request_misc=% ...
分类:其他好文   时间:2020-11-12 13:53:22    阅读次数:8
复习re
#__author: "ZXYang"#date: 2020/4/23import refrom re import findall# ret = re.findall('w..l', 'hello world')# print(ret)# ^# ret = re.findall('^w..l', ...
分类:其他好文   时间:2020-11-11 16:40:49    阅读次数:6
14383条   上一页 1 ... 14 15 16 17 18 ... 1439 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!