摘要:
export const patterns = [{ name:"Date in format dd/mm/yyyy", regex:/^(0?[1-9]|[12][0-9]|3[01])([ /\-])(0?[1-9]|1[012])\2([0-9][0-9][0-9][0-9])(([ -])( 阅读全文
posted @ 2020-08-12 19:28
fndefbwefsowpvqfx
阅读(136)
评论(0)
推荐(0)
摘要:
目录 邮箱 电话 域名 IP 帐号校验 字符校验 汉字 英文和数字 长度为3-20的所有字符 英文字符 由26个英文字母组成的字符串 由26个大写英文字母组成的字符串 由26个小写英文字母组成的字符串 由数字和26个英文字母组成的字符串 由数字、26个英文字母或者下划线组成的字符串 中文、英文、数字 阅读全文
posted @ 2020-08-12 19:24
fndefbwefsowpvqfx
阅读(197)
评论(0)
推荐(0)
摘要:
Regular expressions are patterns used to match character combinations in strings. In JavaScript, regular expressions are also objects. These patterns 阅读全文
posted @ 2020-08-12 19:14
fndefbwefsowpvqfx
阅读(121)
评论(0)
推荐(0)
摘要:
syntax specifications std::ECMAScript syntax ECMAScript regular expressions pattern syntax The following syntax is used to construct regex objects (or 阅读全文
posted @ 2020-08-12 19:12
fndefbwefsowpvqfx
阅读(138)
评论(0)
推荐(0)
摘要:
Regular Expressions (C++) 11/04/2016 https://docs.microsoft.com/en-us/cpp/standard-library/regular-expressions-cpp The C++ standard library supports m 阅读全文
posted @ 2020-08-12 17:59
fndefbwefsowpvqfx
阅读(115)
评论(0)
推荐(0)
摘要:
const path = require('path'); const HtmlWebpackPlugin = require('html-webpack-plugin'); //installed via npm const webpack = require('webpack'); //to a 阅读全文
posted @ 2020-08-12 16:05
fndefbwefsowpvqfx
阅读(64)
评论(0)
推荐(0)
摘要:
no network npm config set registry https://registry.npm.taobao.org/ npm config set disturl https://npm.taobao.org/dist/ npm config set electron_mirror 阅读全文
posted @ 2020-08-12 15:56
fndefbwefsowpvqfx
阅读(134)
评论(0)
推荐(0)
摘要:
git中的换行符 commit: 无转换 checkout: 无转换 git config --global core.autocrlf false commit: 转为LF checkout: 转为CRLT git config --global core.autocrlf true commit 阅读全文
posted @ 2020-08-12 10:04
fndefbwefsowpvqfx
阅读(250)
评论(0)
推荐(0)