You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdepim/libkdepim/tests/test_kregexp.cpp

17 lines
312 B

#include <kregexp3.h>
#include <kdebug.h>
#include <kinstance.h>
int
main()
{
KInstance app("# ");
// test for http://bugs.kde.org/show_bug.cgi?id=54886
KRegExp3 reg("^");
QString res = reg.replace(QString::fromLatin1("Fun stuff"),
QString::fromLatin1("[fun] "));
kdDebug() << res << endl;
}