Как определить тип данных из файла

Поэтому мне нужно знать, как определить строку текста и вывести, какой это тип данных, например, если строка говорит 123, это должно быть выведено как 123 int,

Прямо сейчас моя программа определяет только boolean, string, а также char, Как мне получить, чтобы сказать мне, если это int или double?

int main() {
string line;
string arr[30];
ifstream file("pp.txt");
if (file.is_open()){
for (int i = 0; i <= 4; i++) {
file >> arr[i];
cout << arr[i];
if (arr[i] == "true" || arr[i] == "false") {
cout << " boolean" << endl;

}
if (arr[i].length() == 1) {
cout << " character" << endl;

}
if (arr[i].length() > 1 && arr[i] != "true" && arr[i] != "false") {
cout << " string" << endl;
}
}
file.close();
}
else
cout << "Unable to open file";
system("pause");
}

Спасибо

0

Решение

Используйте регулярное выражение: http://www.cplusplus.com/reference/regex/

#include <regex>
std::string token = "true";
std::regex boolean_expr = std::regex("^false|true$");
std::regex float_expr = std::regex("^\d+\.\d+$");
std::regex integer_expr = std::regex("^\d+$");
...
if (std::regex_match(token, boolean_expr)) {
// matched a boolean, do something
}
else if (std::regex_match(token, float_expr)) {
// matched a float
}
else if (std::regex_match(token, integer_expr)) {
// matched an integer
}
...
1

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]