How to split a hex string into a vector in C++

1 Answer

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

int main(void)
{
    std::string s = "432b2b2050726f67";
    
    size_t len = s.length();
    
    std::vector<std::string> v;
    
    for(size_t i = 0; i < len; i += 2) {
        v.push_back(s.substr(i, 2));
    }

    for (const auto &str : v) 
        std::cout << str << " ";   
        
    return 0;
}
 
 
 
 
 
/*
run:
 
43 2b 2b 20 50 72 6f 67 

*/

 



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

Related questions

1 answer 215 views
1 answer 149 views
1 answer 94 views
94 views asked Aug 20, 2023 by avibootz
1 answer 132 views
3 answers 210 views
3 answers 231 views
1 answer 297 views
...