上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 29 下一页
摘要: 增加定义: public ICommand<RowClickArgs> RowDoubleClickCommand { get; set; } 初始化: 备注:一定要放在构造函数里 public MainWindow() { RowDoubleClickCommand = new DelegateC 阅读全文
posted @ 2021-10-18 17:44 星星c# 阅读(513) 评论(0) 推荐(0) 编辑
摘要: @echo off if "%1"=="h" goto begin start mshta vbscript:createobject("wscript.shell").run("""%~nx0"" h",0)(window.close)&&exit :begin REM c: cd C:\User 阅读全文
posted @ 2021-10-17 19:29 星星c# 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 运行时: 先执行:set CUDA_VISIBLE_DEVICES=0 再执行:hub serving start -c "C:\Users\wjx\Desktop\ocr\PaddleOCR-release-2.3\deploy\hubserving\ocr_system\config.json" 阅读全文
posted @ 2021-10-10 13:05 星星c# 阅读(372) 评论(0) 推荐(0) 编辑
摘要: 1、shared_buffers 调整为内存的1/4,我这64GB这里设置为: shared_buffers = 16GB 2、wal_buffers wal_buffers = 50MB 50MB 【待测试】 https://blog.csdn.net/shipeng1022/article/de 阅读全文
posted @ 2021-10-09 13:27 星星c# 阅读(52) 评论(0) 推荐(0) 编辑
摘要: string carNumber = "我的车冀R445541是多少"; MatchCollection mcCarNumber = Regex.Matches(carNumber, @"([京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领]{1}[A-Z]{1}[A-Z0-9]{ 阅读全文
posted @ 2021-10-08 17:49 星星c# 阅读(523) 评论(0) 推荐(0) 编辑
摘要: 思路:如果号码是18位的,并且符合生日规则,还有前面和后面都不是数字的这种才是身份证号,避免误采 string idCard = " 135412198801245521af888888888888888888,110444199601012145"; idCard = " " + idCard + 阅读全文
posted @ 2021-10-08 17:44 星星c# 阅读(629) 评论(0) 推荐(0) 编辑
摘要: 提取邮箱数据的代码记录: string source = "1afdsa邮箱为:123@163.com 中国aa@bb.com.cna1中国人民"; string regex = @"[a-zA-Z0-9\.\-_]+@[a-zA-Z0-9\-_]+[a-zA-Z0-9\.]+[a-zA-Z0-9\ 阅读全文
posted @ 2021-10-08 17:34 星星c# 阅读(275) 评论(0) 推荐(0) 编辑
摘要: 支持提取:13255544444或 136 7789 9654格式的手机号 using System; using System.Collections.Generic; using System.Text.RegularExpressions; namespace ConsoleApp4 { cl 阅读全文
posted @ 2021-10-08 17:13 星星c# 阅读(730) 评论(0) 推荐(0) 编辑
摘要: 1、安装python 安装的时候要注意一点,现在暂不支持3.9或以上版,所以建议下载3.8.8版本::下载地址:https://www.python.org/ftp/python/3.8.8/python-3.8.8-amd64.exe,前面有一篇简单介绍了一下安装步骤,地址如下:https://w 阅读全文
posted @ 2021-10-01 15:12 星星c# 阅读(1482) 评论(2) 推荐(1) 编辑
摘要: 路径一定要双斜扛\\ 如下: # -*- coding:utf-8 -*- from __future__ import absolute_import from __future__ import division from __future__ import print_function cla 阅读全文
posted @ 2021-09-30 23:36 星星c# 阅读(418) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 29 下一页