Tiago Maluta wrote On 11-02-2008 08:22:
Hi,

Following Assistant (for C++) documentation about QString split method I saw:

str = "Now: this sentence fragment.";
list = str.split(QRegExp("\\b"));
// list: [ "", "Now", ": ", "this", " ", "sentence", " ", "fragment", "." ]

Now, I with python I tried, a simple example:


 line = p.readline()
 sline = line.split(QtCore.QRegExp("[A-Z]+"))

Hi,

You're trying to use the split() method of the python core string type and this method needs a character buffer which contains the delimiter characters.

But the example that you've found out in the documentation uses the split() method of the QString class.

--
Ozan ÇAĞLAYAN
http://cekirdek.pardus.org.tr/~ozan
<ozan_at_pardus.org.tr>
_______________________________________________
PyQt mailing list    [email protected]
http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Reply via email to