我有一串字节,如下所示:
"1,3,8,b,e,ff,10"
如何将此字符串拆分为包含以下值的BYTE的std :: vector:
[0x01,0x03,0x08,0x0b,0x0e,0xff,0x10]
我正在尝试使用','作为分隔符来拆分字符串,但是我在使用它时遇到了一些麻烦。有人能帮助我解决这个问题吗?
所以我试过这个:
std::istringstream iss("1 3 8 b e ff 10");
BYTE num = 0;
while(iss >> num || !iss.eof())
{
if(iss.fail())
{
iss.clear();
std::string dummy;
iss >> dummy;
continue;
}
dataValues.push_back(num);
}
但是这会将ascii字节值推送到向量中:
49 //1
51 //3
56 //8
98 //b
101 //e
102 //f
102 //f
49 //1
48 //0
我试图用以下内容填充向量:
0x01
0x03
0x08
0x0b
0x0e
0xff
0x10
答案 0 :(得分:1)
您从我的评论中错过了根据您的用例显示linked answer的一些小问题:
std::istringstream iss("1,3,8,b,e,ff,10");
std::vector<BYTE> dataValues;
unsigned int num = 0; // read an unsigned int in 1st place
// BYTE is just a typedef for unsigned char
while(iss >> std::hex >> num || !iss.eof()) {
if(iss.fail()) {
iss.clear();
char dummy;
iss >> dummy; // use char as dummy if no whitespaces
// may occur as delimiters
continue;
}
if(num <= 0xff) {
dataValues.push_back(static_cast<BYTE>(num));
}
else {
// Error single byte value expected
}
}
您可以看到完整正常的样本here on ideone。
答案 1 :(得分:0)
工作示例代码(使用C ++ 11在GCC 4.9.0中测试):
文件save.txt
包含:1,3,8,b,e,ff,10
作为第一行和唯一行。
输出:
1
3
8
b
e
ff
10
这个想法是:
代码:
#include <fstream>
#include <boost/algorithm/string/split.hpp>
#include <boost/algorithm/string/classification.hpp>
#include <boost/lexical_cast.hpp>
int main(int argc, char* argv[]) {
std::ifstream ifs("e:\\save.txt");
std::string line;
std::vector<std::string> tokens;
std::getline(ifs, line);
boost::split(tokens, line, boost::is_any_of(","));
std::vector<unsigned char> values;
for (const auto& t : tokens) {
unsigned int x;
std::stringstream ss;
ss << std::hex << t;
ss >> x;
values.push_back(x);
}
for (auto v : values) {
std::cout << std::hex << (unsigned long)v << std::endl;
}
return 0;
}
答案 2 :(得分:0)
只是为了演示另一种可能更快的做事方式,考虑将所有内容读入数组并使用自定义迭代器进行转换。
class ToHexIterator : public std::iterator<std::input_iterator_tag, int>{
char* it_;
char* end_;
int current_;
bool isHex(const char c){
return (c >= '0' && c <= '9') || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F');
}
char toUpperCase(const char c){
if (c >= 'a' && c <= 'f'){
return (c - 'a') + 'A';
}
return c;
}
int toNibble(const char c){
auto x = toUpperCase(c);
if (x >= '0' && x <= '9'){
return x - '0';
}
else {
return (x - 'A') + 10;
}
}
public:
ToHexIterator() :it_{ nullptr }, end_{ nullptr }, current_{}{} //default constructed means end iterator
ToHexIterator(char* begin, char* end) :it_{ begin }, end_{ end }, current_{}{
while (!isHex(*it_) && it_ != end_){ ++it_; }; //make sure we are pointing to valid stuff
++(*this);
}
bool operator==(const ToHexIterator &other){
return it_ == nullptr && end_ == nullptr && other.it_ == nullptr && other.end_ == nullptr;
}
bool operator!=(const ToHexIterator &other){
return !(*this == other);
}
int operator*(){
return current_;
}
ToHexIterator & operator++(){
current_ = 0;
if (it_ != end_) {
while (isHex(*it_) && it_ != end_){
current_ <<= 4;
current_ += toNibble(*it_);
++it_;
};
while (!isHex(*it_) && it_ != end_){ ++it_; };
}
else {
it_ = nullptr;
end_ = nullptr;
}
return *this;
}
ToHexIterator operator++(int){
ToHexIterator temp(*this);
++(*this);
return temp;
}
};
基本用例如下:
char in[] = "1,3,8,b,e,ff,10,--";
std::vector<int> v;
std::copy(ToHexIterator{ std::begin(in), std::end(in) }, ToHexIterator{}, std::back_inserter(v));
请注意,使用查找表执行ascii到hex半字节转换可能会更快。
速度可能非常依赖于编译器优化和平台,但是因为某些istringstream函数是作为虚函数或指向函数的指针实现的(取决于标准库实现),优化器会遇到问题。在我的代码中没有victuals或函数指针,唯一的循环是在优化器用于处理的std :: copy实现中。它通常也更快地循环,直到两个地址相等而不是循环,直到一些改变指针指向的东西等于某事。在一天结束时,我所有的猜测和伏都教,但在我的机器上的MSVC13上快了大约10倍。这是GCC上的一个实例http://ideone.com/nuwu15,取决于运行,取决于哪个测试先行(可能是因为一些缓存效果),介于10x和3x之间。(
总而言之,毫无疑问会有更多的优化空间等等。任何说“我的”的人总是更快&#34;在这个抽象层面上卖蛇油。
更新:使用编译时生成的查找表进一步提高速度:http://ideone.com/ady8GY(请注意,我增加了输入字符串的大小以降低噪音,因此这与上面的示例无法直接比较)