12 2021 档案

摘要:一、校验数字的表达式 1. 数字:^[0-9]*$ 2. n位的数字:^\d{n}$ 3. 至少n位的数字:^\d{n,}$ 4. m-n位的数字:^\d{m,n}$ 5. 零和非零开头的数字:^(0|[1-9][0-9]*)$ 6. 非零开头的最多带两位小数的数字:^([1-9][0-9]*)+( 阅读全文
posted @ 2021-12-09 19:56 lipu1993 阅读(61) 评论(0) 推荐(0)
摘要:1、拖入文件在控制台输入: git init 2、输入user name如:git config --global user.name 'xxx' 3、输入user email如:git config --global user.email "xxxxxxxx@xxx.com" 4、输入:git a 阅读全文
posted @ 2021-12-08 22:57 lipu1993 阅读(42) 评论(0) 推荐(0)