Let
Code:
this.is.a.string
a QString. Is there a QString method that returns me the nth token based on a separator character? Something in the form
The separator character in this case is the dot
Printable View
Yes, QString::section().
Or QString::split(), using '.' as the split delimiter if you want all of the pieces.