Namespaces
Variants
Actions

Split and extract strings using QString

Jump to: navigation, search
Article Metadata

Article
Created: srikanth_trulyit (19 Jun 2009)
Last edited: hamishwillee (23 Jul 2012)

This article shows how you can split a QString into pieces using a specified delimiter.

Use case

At times we need to split a string into seperate strings. For example we want to get all email ids from a mailing list. Each mail id is seperated with "," This can be easily done using QString

QString mailingList("abc@xyz.com,def@xyz.com,ghi@xyz.com,jkl@xyz.com");
QString delimiterPattern(",");
QStringList mailids = mailingList.split(delimiterPattern);
This page was last modified on 23 July 2012, at 15:19.
286 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved