摘要:
1.获取某字符串中汉字的个数 1 ... 2 private int getChineseCount(String text) { 3 String Reg = "^[\u4e00-\u9fa5]{1}$";// 正则 4 int result = 0; 5 for (int i = 0; i < 阅读全文
摘要:
1.《巫师3》运行时报错: GPU does not meet minimal requirements Support for DirectX11 is required 很多人说是显卡问题,但现在玩这个的都是好电脑,不会是显卡问题,而是directx11与12不对应的问题,把系统的配置替换游戏的 阅读全文