摘要:
增加定义: public ICommand<RowClickArgs> RowDoubleClickCommand { get; set; } 初始化: 备注:一定要放在构造函数里 public MainWindow() { RowDoubleClickCommand = new DelegateC 阅读全文
摘要:
@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 阅读全文
摘要:
运行时: 先执行:set CUDA_VISIBLE_DEVICES=0 再执行:hub serving start -c "C:\Users\wjx\Desktop\ocr\PaddleOCR-release-2.3\deploy\hubserving\ocr_system\config.json" 阅读全文
摘要:
1、shared_buffers 调整为内存的1/4,我这64GB这里设置为: shared_buffers = 16GB 2、wal_buffers wal_buffers = 50MB 50MB 【待测试】 https://blog.csdn.net/shipeng1022/article/de 阅读全文
摘要:
string carNumber = "我的车冀R445541是多少"; MatchCollection mcCarNumber = Regex.Matches(carNumber, @"([京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领]{1}[A-Z]{1}[A-Z0-9]{ 阅读全文
摘要:
思路:如果号码是18位的,并且符合生日规则,还有前面和后面都不是数字的这种才是身份证号,避免误采 string idCard = " 135412198801245521af888888888888888888,110444199601012145"; idCard = " " + idCard + 阅读全文
摘要:
提取邮箱数据的代码记录: 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\ 阅读全文
摘要:
支持提取:13255544444或 136 7789 9654格式的手机号 using System; using System.Collections.Generic; using System.Text.RegularExpressions; namespace ConsoleApp4 { cl 阅读全文
摘要:
1、安装python 安装的时候要注意一点,现在暂不支持3.9或以上版,所以建议下载3.8.8版本::下载地址:https://www.python.org/ftp/python/3.8.8/python-3.8.8-amd64.exe,前面有一篇简单介绍了一下安装步骤,地址如下:https://w 阅读全文
摘要:
路径一定要双斜扛\\ 如下: # -*- coding:utf-8 -*- from __future__ import absolute_import from __future__ import division from __future__ import print_function cla 阅读全文