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');">< ...
随机推荐
- 服务拆分之《Dubbo服务跨云通信》
2022年10月开始,公司从阿里请来的架构师将全力推进服务拆分这个计划.实际上这个计划早就提上日程了,只是没有一个带头大哥带着把这个事情搞起来,因为这个系统太庞大了,还非常的复杂,当时就没有哪一个人是 ...
- Qt 窗口随控件变换大小
QVBoxLayout* verticalLayout = new QVBoxLayout(this); verticalLayout->setSizeConstraint(QLayout::S ...
- 【报错解决】使用代理后从Github中clone仓库报错
当电脑使用代理后,会造成Github的clone和push等功能无法正常使用 报错内容:Failed to connect to github.com port 443 after ***** ms: ...
- LSTM学习三维轨迹的Python实现
一.引言 长短期记忆网络(LSTM)是一种强大的递归神经网络(RNN),广泛应用于时间序列预测.自然语言处理等任务.在处理具有时间序列特征的数据时,LSTM通过引入记忆单元和门控机制,能够更有效地捕捉 ...
- 我用cursor, 半就开发了一个手机壁纸小程序,真的太强了
前言 我用chatGPT帮我写后端爬虫,分析知乎html代码,爬取知乎壁纸.然后用cursor AI工具,完全使我一个不懂前端uniapp框架的人,开发了一个小程序手机壁纸页面. 原来一周的工作量,半 ...
- Qt开发经验小技巧191-195
关于QList队列的处理中,我们最常用的就是调用append函数添加item,往前插入item很多人第一印象就是调用insert(0,xxx)来插入,其实QList完全提供了往前追加item的函数pr ...
- UML之属性与参数的多重性
在UML中,多重性是指一个条目潜在的数量范围.多重性可被用于属性.操作参数.关联关系.UML元模型也使用多重性对元模型元素之间的关系进行约束.多重性总是包含基数值,它是相关条目在现实世界中的确切数量. ...
- 关于前端上传excell时间的问题
当前端导入excell里的数据时,只能获取到下面类似的这种数据 Excel存储的日期是从1900年1月1日开始按天数来计算的,也就是说1900年1月1日在Excel中是1. 转化的思路和对Excel中 ...
- Solution Set - “我献上明月一盏,照满河山”
目录 0.「集训队互测 2018」「洛谷 P9248」完美的集合 1.「UR #6」「UOJ #74」破解密码 2.「NOI Simu.」苯为 3.「NOI Simu.」西克 4.「NOI Simu. ...
- WPFMediaKit --WPF项目中 调用摄像头拍照
<Window x:Class="WpfApp1.MainWindow" xmlns="http://schemas.microsoft.com/winfx/200 ...