Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7890259
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T06:18:33+00:00 2026-06-03T06:18:33+00:00

I have String vector that has data set look like below. vector<string> result; <index>

  • 0

I have String vector that has data set look like below.

vector<string> result;

<index> | <Name> | <email> | <status>

    1|duleep|dfe@gamil.com|0
    2|dasun|dasun@da.com|0
    3|sampath|lkdf@dg.lk|1
    4|Nuwan|Kandyjkj@lkj.com|0

now i want to get separate vector data(Name, Index,Status) please suggest best way to do this using C++(how can i convert to string array[4][4]?)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T06:18:34+00:00Added an answer on June 3, 2026 at 6:18 am

    Here is an example I came up with using boost::tokenizer (if you don’t want to use boost, then sorry):

    #include <iostream>
    #include <boost/tokenizer.hpp>
    #include <string>
    #include <vector>
    int main()
    {
      std::vector<std::string> v;
      v.push_back("1|duleep|dfe@gamil.com|0");
      v.push_back("2|dasun|dasun@da.com|0");
      v.push_back("3|sampath|lkdf@dg.lk|1");
      v.push_back("4|Nuwan|Kandyjkj@lkj.com|0");
    
      boost::char_separator<char> sep("|");
      std::vector<boost::tokenizer<boost::char_separator<char>>> tokens;
      for (auto& s : v)
      {
        tokens.push_back({s, sep});
      }
    }
    

    If you want to use std::string array[4][4], just iterate through the tokens and assign them to your array.

    Here is another way without boost:

      for (auto& s : v)
      {
        std::stringstream ss(s);
        std::string token;
        while (std::getline(ss, token, '|'))
        {
            // Put token into your array here
        }
      }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class Message that has a std::string as a data member, defined
I have a class State that has a string data type called moveType .
I have string like \LESSING\root\cimv2:Win32_UserAccount.Domain=LESSING,Name=Admin How to convert it to LESSING\Admin using Framework?
I have a class that has a vector of another class objects as a
If I have a std::vector buffer that has room for 100 characters and I
I have a std::vector<uint8_t> that contains strings at specific offsets. Here's a shortened dump:
I have made a string vector vector<string> actor_; and then added elements in it
I have a std::vector<std::string> m_vPaths; I iterate over this vector and call ::DeleteFile(strPath) as
I have the following C++ code: typedef istream_iterator<string> isi; // (1) vector<string> lineas(isi(cin), isi());
I have a useful macro here: #include <algorithm> #include <vector> #include <string> #include <boost/algorithm/string.hpp>

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.