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/libtdepim/tests/test_kregexp.cpp

17 lines
319 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("^");
TQString res = reg.replace(TQString::tqfromLatin1("Fun stuff"),
TQString::tqfromLatin1("[fun] "));
kdDebug() << res << endl;
}