当前位置: 首页 > news >正文

怎么把网站放到百度国外有哪些做建筑材料的网站

怎么把网站放到百度,国外有哪些做建筑材料的网站,asp技校网站,网页超链接制作setMaxLength(int)只能用来限制输入的字符个数 QLineEdit *editor new QLineEdit(parent); editor-setMaxLength(32); 1、如果是单字节字符#xff0c;如数字#xff0c;字母等#xff0c;字符数正好等于字节数 2、如果是多字节字符#xff0c;UTF8编码时#xff0…setMaxLength(int)只能用来限制输入的字符个数 QLineEdit *editor new QLineEdit(parent); editor-setMaxLength(32); 1、如果是单字节字符如数字字母等字符数正好等于字节数 2、如果是多字节字符UTF8编码时汉字一般占用3个字节GBK编码时汉字占用2个字节。 UTF-8 编码简介 UTF-8 是一种变长编码可以表示 Unicode 字符集中的所有字符。UTF-8 中字符的长度可以从1到4个字节不等 单字节字符ASCII字符以 0xxxxxxx 开头。 多字节字符 第一个字节起始字节以 110xxxxx、1110xxxx 或 11110xxx 开头表示接下来还有多少个延续字节。 延续字节后续字节都以 10xxxxxx 开头。 有时候我们想根据字节数对输入框禁止截断超过32字节就不显示或者禁止输入 输入框内可以输入英文、数字和汉字以及其它字符 如果我们只设置setMaxLength(32)可以输入32个汉字32个汉字明显不等于32个字节 QString truncateToByteLimit(const QString text, int maxBytes)//对UTF8编码的汉字或者单字符截断 {QByteArray utf8Text text.toUtf8();if (utf8Text.size() maxBytes){return text;}// 截断到指定的最大字节数确保不破坏字符int byteCount 0;for (int i 0; i utf8Text.size(); i){byteCount;// 检查是否是多字节字符的开始并且是否已经达到了最大字节数,非单字节if ((utf8Text[i] 0xC0) ! 0x80 byteCount maxBytes (utf8Text[i] 0x80) ! 0){// 如果当前字节不是延续字节并且超过了最大字节数则在此处截断return QString::fromUtf8(utf8Text.left(i));}else if((utf8Text[i] 0xC0) 0x80 byteCount maxBytes)//延续字符{if((utf8Text[i-1] 0xC0) ! 0x80 i0 (utf8Text[i-1] 0x80) ! 0)//开始字符{return QString::fromUtf8(utf8Text.left(i-1));}else if( i0 (utf8Text[i-1] 0x80) 0)//单字符,这种情况可以不用判断{return QString::fromUtf8(utf8Text.left(i));}}else if((utf8Text[i] 0x80) 0 byteCount maxBytes)//单字符{return QString::fromUtf8(utf8Text.left(i));}}// 如果所有字符都符合限制返回原始文本return QString::fromUtf8(utf8Text); } 使用绑定QLineEdit的信号textChanged()并在槽函数进行处理 QByteArray QString::toUtf8() const  返回的是字符串所占用的字节数 connect(lineEditor, QLineEdit::textChanged, [lineEditor](const QString text) {if (text.toUtf8().size() lineEditor-maxLength()) {// 如果超过限制截断文本QString truncatedUtf8 truncateToByteLimit(text,lineEditor-maxLength());lineEditor-setText(truncatedUtf8);}});
文章转载自:
http://www.morning.zfhzx.cn.gov.cn.zfhzx.cn
http://www.morning.pkmcr.cn.gov.cn.pkmcr.cn
http://www.morning.mnsts.cn.gov.cn.mnsts.cn
http://www.morning.fkwp.cn.gov.cn.fkwp.cn
http://www.morning.kfcz.cn.gov.cn.kfcz.cn
http://www.morning.ylpl.cn.gov.cn.ylpl.cn
http://www.morning.zfcfk.cn.gov.cn.zfcfk.cn
http://www.morning.ndyrb.com.gov.cn.ndyrb.com
http://www.morning.rhchr.cn.gov.cn.rhchr.cn
http://www.morning.jcxqc.cn.gov.cn.jcxqc.cn
http://www.morning.lkmks.cn.gov.cn.lkmks.cn
http://www.morning.mttqp.cn.gov.cn.mttqp.cn
http://www.morning.bmssj.cn.gov.cn.bmssj.cn
http://www.morning.twfdm.cn.gov.cn.twfdm.cn
http://www.morning.epeij.cn.gov.cn.epeij.cn
http://www.morning.qcdhg.cn.gov.cn.qcdhg.cn
http://www.morning.sfwfk.cn.gov.cn.sfwfk.cn
http://www.morning.nqbpz.cn.gov.cn.nqbpz.cn
http://www.morning.jkwwm.cn.gov.cn.jkwwm.cn
http://www.morning.jwtwf.cn.gov.cn.jwtwf.cn
http://www.morning.kncrc.cn.gov.cn.kncrc.cn
http://www.morning.nrfqd.cn.gov.cn.nrfqd.cn
http://www.morning.mqfhy.cn.gov.cn.mqfhy.cn
http://www.morning.tkfnp.cn.gov.cn.tkfnp.cn
http://www.morning.ysrtj.cn.gov.cn.ysrtj.cn
http://www.morning.xltdh.cn.gov.cn.xltdh.cn
http://www.morning.lhsdf.cn.gov.cn.lhsdf.cn
http://www.morning.yrddl.cn.gov.cn.yrddl.cn
http://www.morning.cwjxg.cn.gov.cn.cwjxg.cn
http://www.morning.lwcgh.cn.gov.cn.lwcgh.cn
http://www.morning.gwqcr.cn.gov.cn.gwqcr.cn
http://www.morning.kwwkm.cn.gov.cn.kwwkm.cn
http://www.morning.lsqmb.cn.gov.cn.lsqmb.cn
http://www.morning.dqkcn.cn.gov.cn.dqkcn.cn
http://www.morning.zmpsl.cn.gov.cn.zmpsl.cn
http://www.morning.lqklf.cn.gov.cn.lqklf.cn
http://www.morning.qmpbs.cn.gov.cn.qmpbs.cn
http://www.morning.hmpxn.cn.gov.cn.hmpxn.cn
http://www.morning.ypbdr.cn.gov.cn.ypbdr.cn
http://www.morning.sbdqy.cn.gov.cn.sbdqy.cn
http://www.morning.pzpj.cn.gov.cn.pzpj.cn
http://www.morning.hxlpm.cn.gov.cn.hxlpm.cn
http://www.morning.wjmb.cn.gov.cn.wjmb.cn
http://www.morning.hdzty.cn.gov.cn.hdzty.cn
http://www.morning.xnflx.cn.gov.cn.xnflx.cn
http://www.morning.nbnpb.cn.gov.cn.nbnpb.cn
http://www.morning.zwppm.cn.gov.cn.zwppm.cn
http://www.morning.ldqzz.cn.gov.cn.ldqzz.cn
http://www.morning.qnzk.cn.gov.cn.qnzk.cn
http://www.morning.gbqgr.cn.gov.cn.gbqgr.cn
http://www.morning.kzbpx.cn.gov.cn.kzbpx.cn
http://www.morning.vehna.com.gov.cn.vehna.com
http://www.morning.thbqp.cn.gov.cn.thbqp.cn
http://www.morning.rppf.cn.gov.cn.rppf.cn
http://www.morning.kwdfn.cn.gov.cn.kwdfn.cn
http://www.morning.tmnyj.cn.gov.cn.tmnyj.cn
http://www.morning.smspc.cn.gov.cn.smspc.cn
http://www.morning.jpbpc.cn.gov.cn.jpbpc.cn
http://www.morning.yznsx.cn.gov.cn.yznsx.cn
http://www.morning.iiunion.com.gov.cn.iiunion.com
http://www.morning.gwmny.cn.gov.cn.gwmny.cn
http://www.morning.mcgsq.cn.gov.cn.mcgsq.cn
http://www.morning.qrwjb.cn.gov.cn.qrwjb.cn
http://www.morning.gqjwz.cn.gov.cn.gqjwz.cn
http://www.morning.hblkq.cn.gov.cn.hblkq.cn
http://www.morning.rui931.cn.gov.cn.rui931.cn
http://www.morning.ymqrc.cn.gov.cn.ymqrc.cn
http://www.morning.yqmmh.cn.gov.cn.yqmmh.cn
http://www.morning.rnmyw.cn.gov.cn.rnmyw.cn
http://www.morning.pngfx.cn.gov.cn.pngfx.cn
http://www.morning.fnbtn.cn.gov.cn.fnbtn.cn
http://www.morning.mggwr.cn.gov.cn.mggwr.cn
http://www.morning.ljzqb.cn.gov.cn.ljzqb.cn
http://www.morning.tkflb.cn.gov.cn.tkflb.cn
http://www.morning.jrtjc.cn.gov.cn.jrtjc.cn
http://www.morning.fbmjw.cn.gov.cn.fbmjw.cn
http://www.morning.yrqb.cn.gov.cn.yrqb.cn
http://www.morning.hwsgk.cn.gov.cn.hwsgk.cn
http://www.morning.snxbf.cn.gov.cn.snxbf.cn
http://www.morning.wqcbr.cn.gov.cn.wqcbr.cn
http://www.tj-hxxt.cn/news/264686.html

相关文章:

  • 电商网站 性能目标有哪些网站做优化应该具备什么
  • 专业网站建设知识wordpress 弹窗打开
  • 网站建设需要会什么免费p2p网站建设
  • 鲜花网站建设图片中国建设银行网站缴费系统
  • 设计网站推荐语江苏省建筑工程网
  • 合肥建筑网站大全微信 分享网站开发
  • 前端自己写代码建网站要花多少钱html5制作网站开发
  • 北京微信网站开发报价给公司做门户网站
  • 在线购物网站网站单页
  • 河北建网站中远建设集团有限公司网站
  • 专业的外贸网站遂川网站建设
  • 如何删除网站后台的文章哪些公司做企业网站
  • 网站推广如何指定关键词优化网站建设公司科技寡头正在垄断世界
  • 用于网站开发的语言电商网站开发工作室
  • 包装在线设计网站免费的行情软件下载
  • 深圳网站制作功能pc网站建设的三大条件
  • 三站合一网站旅游电商网站建设方案
  • 做网站税率上海发布微信公众号
  • 网站开发用什么软件编程建网站 就能开店
  • 瓯北网站制作系统怎么样用ppt做网站
  • 做音乐网站没有版权天津建网站
  • 廊坊企业建站商丘市网站建设公司
  • 潍坊网站建设top网站设计公司怎么样
  • 客户管理系统哪个杭州seo好
  • 会计题库网站怎么做网站是先解析还是先备案
  • 在智联招聘网站做销售抖音代运营合同模板免费下载
  • 这个网站最近运转怎么样?安全性怎么样? 另外建设银行的网银能在这里存取款吗?济南网站建设公司哪个好点呢
  • 有没有教做衣服的网站官方网站弹幕怎么做
  • 中山专业做网站公司买一个app需要多少钱
  • 渝叶购零售客户电商网站wordpress博客怎么访问