everyone. I need to split a QString by any type of whitespaces as fast as possible. Now I am using QRegExp, but this method takes a lot of time. Is there a faster option to do that?
QString l = "one two three four five";
lst = l.split(QRegExp("\\s+"), QString::SkipEmptyParts);