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]+"))

With this code I got: TypeError: PyQt expected a character buffer object.

I don't know how to fix it, if I try a delimiter just line.slipt(',') it works.

Some ideas?

-- Tiago
_______________________________________________
PyQt mailing list    [email protected]
http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Reply via email to