gpt4 book ai didi

c++ - QRegExp 去除换行符和多个空格

转载 作者:行者123 更新时间:2023-11-28 02:56:52 24 4
gpt4 key购买 nike

使用 Qt 框架的类,我们如何从字符串中删除换行符、回车符和多个空格。

输入:

A quick fox       run over
the lazy dog

输出:

A quick fox run over the lazy dog

最佳答案

在您的正则表达式中搜索 \s+ 并将其替换为单个空格。 \s+ 表示一个或多个空格(包括\n,\r,\t,\f "")

之后,如果您的字符串中有前导或尾随空格,则修剪它。或者使用正则表达式。

^\s+|\s+$

^\s+ 表示空格从头开始\s+$表示从末尾开始空格

关于c++ - QRegExp 去除换行符和多个空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21777922/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com