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.
17 lines
321 B
17 lines
321 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.tqreplace(TQString::tqfromLatin1("Fun stuff"),
|
|
TQString::tqfromLatin1("[fun] "));
|
|
kdDebug() << res << endl;
|
|
|
|
}
|