#pragma mark 判断手机号码格式是否正确 + (BOOL)valiMobile:(NSString *)mobileNum { /** * 手机号码 * 移动:134[0-8],135,136,137,138,139,150,151,157,158,159,182,187,188 * 14 ...
分类:
移动开发 时间:
2020-02-19 10:20:11
阅读次数:
96
#pragma once #include <windows.h> #ifdef FONTREPLACE_EXPORTS #define FONTREPLACE_API __declspec(dllexport) #else #define FONTREPLACE_API __declspec(dl ...
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <Windows.h> #include <d2d1.h> #include <wincodec.h> #pragma comment(lib, "d2d1.lib ...
分类:
其他好文 时间:
2020-02-19 01:13:03
阅读次数:
168
Go语言HmacSHA1 对比 http://www.metools.info/code/c25.html package main import ( "crypto/hmac" "crypto/sha1" "encoding/hex" "fmt" ) func HmacSHA1(key strin ...
分类:
编程语言 时间:
2020-02-18 18:29:28
阅读次数:
99
对于shell脚本的输出,如果要输出json格式的内容,我们可以借助python -m json.tool命令 比如 echo '{"name":"zhangsan", "age":"18"}' | python -m json.tool 首先,大括号外面必须有单引号'',因为在shell里面大括号 ...
分类:
Web程序 时间:
2020-02-18 13:14:07
阅读次数:
174
在安装 react-app-rewired 并且进行了一些相关配置后,发现如果运行就会报 Cannot find module 'react-dev-utils/crossSpawn' 错误,这时候按网上说的删除了node_modules发现还是报错, 这时候删除了package-local.jso ...
分类:
其他好文 时间:
2020-02-18 13:12:43
阅读次数:
468
一步一步,从零搭建Go语言开发环境。 安装Go语言及搭建Go语言开发环境 下载 下载地址 Go官网下载地址:https://golang.org/dl/ Go官方镜像站(推荐):https://golang.google.cn/dl/ 版本的选择 Windows平台和Mac平台推荐下载可执行文件版, ...
分类:
编程语言 时间:
2020-02-18 09:27:29
阅读次数:
93
GitLab简介 GitLab是一个用于仓库管理系统的开源项目,使并在此基础上搭建起来的web服务,简单来理解,就是私人的代码仓库,非常适合企业内部使用。 Linux下安装GitLab 1.在防火墙里开放http跟ssh端口 yum install lokkit yum install curl o ...
分类:
其他好文 时间:
2020-02-17 23:57:13
阅读次数:
138
字符串去除空格和换行符 输出结果为: 原字符串 这里是 www .aaa .com 去除空格与换行后 这里是www.aaa.com ...
分类:
其他好文 时间:
2020-02-17 18:17:38
阅读次数:
530
这个类的构造函数是: Fraction(int a, int b) 构造一个a/b的分数。 这个类要提供以下的功能: double toDouble(); 将分数转换为double Fraction plus(Fraction r); 将自己的分数和r的分数相加,产生一个新的Fraction的对象。 ...
分类:
编程语言 时间:
2020-02-17 16:17:43
阅读次数:
2988