Hi there.

I'm a newbie in QT n in trouble with making regular expression.

I want to find words in the double qoutation mark.

So far, i used QRegExp rx("\"([A-Za-z0-9_\\./\\-\\s]*)\""), but i found out this expression cannot find words include special characters.

How should i change my expression to make it better?

eg. <FTP APP="EWS_TEMA" IP="122.298.17.222" USER="hifix03" PASSWD="AwJtzlhqWmtY=|" RDIR="/users/Hifix03/RTE_FILE" LDIR="/Tmp" TIMEOUT="60" USE="Y">

I want to get "EQS_TEMA", "122.298.17.222", "hifix03" and so on INCLUDE "AwJtzlhqWmtY=|"

Anybody can save my life?

Thx in advance.