摘要: 需要引用using System.Text.RegularExpressions; Regex r = new Regex("^\\s*([A-Za-z0-9_-]+(\\.\\w+)*@(\\w+\\.)+\\w{2,5})\\s*$"); if (r.IsMatch(jieta@sina.com 阅读全文
posted @ 2020-12-04 16:16 S+1 阅读(286) 评论(0) 推荐(0)
摘要: mkdir XX (创建一个空目录 XX指目录名) pwd 显示当前目录的路径。 git init 把当前的目录变成可以管理的git仓库,生成隐藏.git文件。 git add XX 把xx文件添加到暂存区去。 git commit –m “XX” 提交文件 –m 后面的是注释。 git statu 阅读全文
posted @ 2020-12-04 09:32 S+1 阅读(57) 评论(0) 推荐(0)
Document