Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,038 questions

40,790 answers

573 users

How to convert string to hexadecimal and store it into a vector with C++

1 Answer

0 votes
#include <iostream>
#include <sstream>
#include <vector>

int main()
{
    std::string s = "C++ Programming";

    std::vector <std::string> v;

    for (size_t i = 0; i < s.size(); i++) {
        std::ostringstream oss;
        oss << std::hex << (int) s[i];
        v.push_back(oss.str());
    }

    for (size_t i = 0; i < s.size(); i++) {
        std::cout << v[i] << " ";
    }
    
    return 0;
}




/*
run:

43 2b 2b 20 50 72 6f 67 72 61 6d 6d 69 6e 67 

*/

 





answered Sep 19, 2021 by avibootz
edited Sep 19, 2021 by avibootz
...