QT5笔记:13. QString 的常用功能
QString采用Unicode码,所以任何一个字符不管中英文,在size或者count时都算作一个字符,不会有宽字符区分
常用的方法
- append
- prepend
- toUpper
- toLower
- left
- right
- section
- simplified
- trimmed
- count
- size
- indexOf
- lastIndexOf
- endsWith
- startsWith
- contains
- isNull
- isEmpty
#include "widget.h"
#include "ui_widget.h" Widget::Widget(QWidget *parent)
: QWidget(parent)
, ui(new Ui::Widget)
{
ui->setupUi(this);
} Widget::~Widget()
{
delete ui;
} void Widget::on_btnAppend_clicked()
{
QString str1 ,str2;
str1 = ui->comboBoxStr1->currentText();//G:\Qt5Book\QT5.9Study
str2 = ui->comboBoxStr2->currentText();//一个反斜杠
str1 = str1.append(str2);
ui->editResult->setText(str1);
} void Widget::on_btnPrepend_clicked()
{
QString str1 ,str2;
str1 = ui->comboBoxStr1->currentText();
str2 = ui->comboBoxStr2->currentText();
str1 = str1.prepend(str2);
ui->editResult->setText(str1);
} void Widget::on_btnUpper_clicked()
{
QString str1 = ui->comboBoxStr1->currentText();
str1 = str1.toUpper();
ui->editResult->setText(str1);
} void Widget::on_btnLower_clicked()
{
QString str1 = ui->comboBoxStr1->currentText();
str1 = str1.toLower();
ui->editResult->setText(str1);
} void Widget::on_btnLeft_clicked()
{
QString str1 = ui->comboBoxStr1->currentText();
int number = ui->spinBoxResult->value();
str1 = str1.left(number);
ui->editResult->setText(str1);
} void Widget::on_btnRight_clicked()
{
QString str1 = ui->comboBoxStr1->currentText();
int number = ui->spinBoxResult->value();
str1 = str1.right(number);
ui->editResult->setText(str1);
} /**
* section
* @brief Widget::on_btnSection_clicked
* @note sep表示用来切割的字符,start表示开始切割的位置,end表示切割的结束位置,flag参数可以用来影响函数的行为的某些方面,例如是否区分大小写,是否跳过空字段和如何处理前导和尾随分隔符。
* @result 结果返回开始切割那个字符到结束切割的那个字符之后的那个字符串。
* @note 当start 或者 end的参数为负数时,表示起始位置为右边。
* @note 相当于先split()进行切割,拿到各个片段(都是数组),然后取出index为start到end的数组内容,然后组装成一个字符串
*/
void Widget::on_btnSection_clicked()
{
QString str1 ,str2;
str1 = ui->comboBoxStr1->currentText();
str2 = ui->comboBoxStr2->currentText();
int number = ui->spinBoxResult->value();
str1 = str1.section(str2.data()[0],number,number +1);
ui->editResult->setText(str1);
} /**
* @brief Widget::on_btnSimplified_clicked
* @note 将字符串的开头和结尾的空白字符(\t、\r、\n、\f、空格)去掉,然后字符串中间的若有多个空格相连,则只保留一个
*/
void Widget::on_btnSimplified_clicked()
{
QString str1 = ui->comboBoxStr1->currentText();
str1 = str1.simplified();
ui->editResult->setText(str1);
} /**
* @brief Widget::on_btnTirm_clicked
* @note 将字符串开头和结尾的空白字符(\t、\r、\n、\f、空格)去掉
*/
void Widget::on_btnTirm_clicked()
{
QString str1 = ui->comboBoxStr1->currentText();
str1 = str1.trimmed();
ui->editResult->setText(str1);
} /**
* @brief Widget::on_btnCount_clicked
* @note Returns the number of (potentially overlapping) occurrences of the string str in this string.
*/
void Widget::on_btnCount_clicked()
{
QString str1 = ui->comboBoxStr1->currentText();
int count = str1.count();
ui->editResult->setText(str1.setNum(count));
} /**
* @brief Widget::on_btnSize_clicked
* @note string的大小:Returns the number of characters in this string.
*/
void Widget::on_btnSize_clicked()
{
QString str1 = ui->comboBoxStr1->currentText();
int size = str1.size();
ui->editResult->setText(str1.setNum(size));
} /**
* @brief Widget::on_binIndexOf_clicked
* @note 第一次出现的index
*/
void Widget::on_binIndexOf_clicked()
{
QString str1 ,str2;
str1 = ui->comboBoxStr1->currentText();
str2 = ui->comboBoxStr2->currentText();
int index = str1.indexOf(str2);
str1 = str1.setNum(index);
ui->editResult->setText(str1);
} /**
* @brief Widget::on_btnLastIndex_clicked
* @note 最后一次出现的index
*/
void Widget::on_btnLastIndex_clicked()
{
QString str1 ,str2;
str1 = ui->comboBoxStr1->currentText();
str2 = ui->comboBoxStr2->currentText();
int index = str1.lastIndexOf(str2);
str1 = str1.setNum(index);
ui->editResult->setText(str1);
} /**
* @brief Widget::on_btnEndWith_clicked
* @note 是否是以str2结尾
*/
void Widget::on_btnEndWith_clicked()
{
QString str1 ,str2;
str1 = ui->comboBoxStr1->currentText();
str2 = ui->comboBoxStr2->currentText();
bool result = str1.endsWith(str2);
ui->checkBoxResult->setText(qobject_cast<QPushButton *>(sender())->text());
ui->checkBoxResult->setChecked(result);
} /**
* @brief Widget::on_btnStartsWith_clicked
* @note 是否以str2开始
*/
void Widget::on_btnStartsWith_clicked()
{
QString str1 ,str2;
str1 = ui->comboBoxStr1->currentText();
str2 = ui->comboBoxStr2->currentText();
bool result = str1.startsWith(str2);
ui->checkBoxResult->setText(qobject_cast<QPushButton *>(sender())->text());
ui->checkBoxResult->setChecked(result);
} /**
* @brief Widget::on_btnContains_clicked
* @note 是否存在str2
*/
void Widget::on_btnContains_clicked()
{
QString str1 ,str2;
str1 = ui->comboBoxStr1->currentText();
str2 = ui->comboBoxStr2->currentText();
bool result = str1.contains(str2);
ui->checkBoxResult->setText(qobject_cast<QPushButton *>(sender())->text());
ui->checkBoxResult->setChecked(result);
} /**
* @brief Widget::on_btnIsNull_clicked
* 是否是null,区别于空字符串和空白字符串
*/
void Widget::on_btnIsNull_clicked()
{
QString str1 = ui->comboBoxStr1->currentText();
bool result = str1.isNull();
ui->checkBoxResult->setText(qobject_cast<QPushButton *>(sender())->text());
ui->checkBoxResult->setChecked(result);
} /**
* @brief Widget::on_btnIsEmpty_clicked
* 是否是空字符串
*/
void Widget::on_btnIsEmpty_clicked()
{
QString str1 ,str2;
str1 = ui->comboBoxStr1->currentText();
bool result = str1.isEmpty();
ui->checkBoxResult->setText(qobject_cast<QPushButton *>(sender())->text());
ui->checkBoxResult->setChecked(result);
}界面:
QT5笔记:13. QString 的常用功能的更多相关文章
- Wireshark学习笔记(一)常用功能案例和技巧
@ 目录 常用功能 1.统计->捕获属性 2.统计->协议分级 3.过滤包Apply as filter E1:过滤出特定序号的包 E2:过滤出某IP地址或端口 E3:导出php文件 E4 ...
- 【笔记】sublime 一些常用功能和快捷键
Ctrl+D 选词 (反复按快捷键,即可继续向下同时选中下一个相同的文本进行同时编辑)Ctrl+G 跳转到相应的行Ctrl+J 合并行(已选择需要合并的多行时)Ctrl+L 选择整行(按住-继续选择下 ...
- JAVA自学笔记13
JAVA自学笔记13 1.StringBuffer类 1)线程安全的可变字符序列 线程安全(即同步) 2)StringBuffer与String的区别:一个可变一个不可变 3)构造方法: ①publi ...
- [Java] JSP笔记 - EL、JSTL 常用标签
一. 什么是 EL 语言 表达式语言(EL)是 JSP 2.0 引入的一种计算和输出 Java 对象的简单语言. 二.EL 语言的作用 为了使JSP写起来更加简单.表达式语言的灵感来自于 ECMASc ...
- python3 字符串与列表常用功能
一.字符串常用功能 1. capitalize(),将字符串的首字母变成大写,其余全部置为小写:如果字符串中有多个单词,也只是将第一个单词的首字母置为大写:例: >>> name = ...
- Ext.Net学习笔记13:Ext.Net GridPanel Sorter用法
Ext.Net学习笔记13:Ext.Net GridPanel Sorter用法 这篇笔记将介绍如何使用Ext.Net GridPanel 中使用Sorter. 默认情况下,Ext.Net GridP ...
- JavaSE学习总结第13天_API常用对象3
13.01 StringBuffer的概述 StringBuffer类概述:线程安全的可变字符序列.一个类似于 String 的字符串缓冲区,但不能修改.虽然在任意时间点上它都包含某种特定的字符序 ...
- 前端开发掌握nginx常用功能之rewrite
上一篇博文对nginx最常用功能的server及location的匹配规则进行了讲解,这也是nginx实现控制访问和反向代理的基础.掌握请求的匹配规则算是对nginx有了入门,但是这些往往还是不能满足 ...
- Linux系统Bash的常用功能(9)
了解了基本的Linux文件文件系统的概念后,我们将更深入的了解一下Linux的其他方面的内容,那就是我们所使用的用户接口,也就是大家常听到的 『Shell』 ,『这个shell并不是黑客反弹的shel ...
- 160229-01、web页面常用功能js实现
web页面常用功能js实现 1.网页未加载时弹出新窗口 <body onunload="window.open('http://www.a68.cn');">< ...
随机推荐
- electron postinstall$ node install.js报错
本来以为是文件路径错了执行失败,手动去执行了下install.js,还是报错,但是不一样是连接超时 试了几种办法,简单直接就是如下方法 1:从项目node_modules中找到electron下的in ...
- 【Amadeus原创】域密码到期发送提醒邮件的超简单方法
1,AD服务器下载安装免费的卓豪AD管理工具 https://www.manageengine.cn/products/self-service-password/free-password-expi ...
- JEP 462 结构化并发是一个很愚蠢的提案
https://openjdk.org/jeps/462 Motivation Developers manage complexity by breaking tasks down into mul ...
- 设置Docker的默认文件存储位置
对于windows下,直接修改docker desktop界面的配置项目.对于rocky linux下面,对应的配置文件存储在: vim /etc/docker/daemon.json 文件可以配置镜 ...
- betterZip解压后压缩包会删除 zip文件解压后原压缩文件能不能删掉
https://www.betterzipcn.com/faq/better-ydeq.html 品牌型号:MacBook Book Air 系统:MacOS Mojave 10.14 软件版本:Be ...
- fatal: repository 'http:/xxxx/root/x.git/' not found
我遇到的问题其实就是gitlab旧服务器迁移到新服务器之后用户的没权限了没有权限操作了 所以抛出该异常 解决办法是赋予新的权限
- Redis安装服务到电脑
1.直接在地址栏输入cmd回车打开命令窗口,输入 redis-server redis.windows.conf 然后回车 2.在cmd命令窗口输入以下命令并回车安装Windows本地服务 redis ...
- Object.freeze冻结属性和v-if结合requestAnimationFrame分帧渲染解决白屏
计算100W条数据的长度造成2s延迟 <template> <div> <h1>数据总长度{{ arrList.length }}</h1> </ ...
- JMeter HTTP Request 采样器全面解析与实战指南
<JMeter HTTP Request 采样器全面解析与实战指南> 一.HTTP Request 采样器简介 宝子们,JMeter 里的 HTTP Request 采样器可厉害啦,它就像 ...
- 前端(一)-Html
1.网页基本信息 <!DOCTYPE html> 浏览器使用的规范 <head> 网页头 <body> 主体部分 <meta> 元数据 meta的nam ...