Qt 使用正则表达式进行字符串替换

Qt使用类QRegExp封装正则表达式,这里举一个例子。

#include 

int main()
{
	QRegExp re = "(.*)";
	QString str = "CSDN博客地址(这是主页地址)";
	str.replace(re,"发现链接(链接到\\2): \\1");
}

结果str的值为发现链接(链接到blog.csdn.net">CSDN博客地址(

你可能感兴趣的:(正则表达式)