Quote Originally Posted by anda_skoa View Post
You just read line-by-line and then parse/split the line according to you criteria.

Cheers,
_
I used the below split function
Qt Code:
  1. list = line.split(QRegularExpression("\\W+"), QString::SkipEmptyParts);
To copy to clipboard, switch view to plain text mode 

And its working Perfectly for me.Thanks for the information.