我有一个已经将字符串转换为ASCII整数的函数,但是如何反向呢?感谢
答案 0 :(得分:2)
你的问题不明确。根据您的ASCII整数(在您的术语中)存储在vector<int>
下面的函数会将其转换为字符串:
std::string
AsciiIntToString ( std::vector<int> const& ascii_ints )
{
std:: string ret_val;
std::vector<int>:: const_iterator it = ascii_ints. begin ();
for ( ; it != ascii_ints. end (); ++it ) {
if ( *it < 0 || *it > 255) throw std::exception ("Invalid ASCII code");
ret_val += static_cast<char>(*it);
}
return ret_val;
}
答案 1 :(得分:0)
以下是一些使用std::bitset
以二进制格式转换数字和文本表示形式的示例(仅适用于可由7位表示的字符集(例如US-ASCII)):
char c = 'a';
// char to int.
int i = static_cast<int>(c);
// int to string (works for char to string also).
std::string bits = std::bitset<8>(i).to_string();
// string to (unsigned long) int.
unsigned long ul = std::bitset<8>(bits).to_ulong();
// int to char.
c = static_cast<char>(ul);
答案 2 :(得分:0)
这是一种更简单的方法!
void convertToString()
{
char redo;
int letter;
int length;
do{
cout<< "How long is your word \n";
cin >> length;
cout << "Type in the letter values \n";
for (int x = 0; x < length; x++)
{
cin >> letter;
cout << char (letter);
}
cout << "\n To enter another word hit R" << endl;
cin >> redo;
} while (redo == 'R');
}
答案 3 :(得分:0)
使用新词“ASCII'int'”是一个不精确的 - 但不是不清楚 - 对ASCII码的引用。引用很明确,因为所有的ASCII码都是整数,就像整数一样。
原始海报能够将ASCII字符转换为十进制,大概是使用函数。
在MySQL中,这将是:SELECT ASCII('A')[FROM DUAL] ;,返回65.
要反转方向,请使用char()函数: SELECT CHAR(65)[FROM DUAL];
也许这对你来说是一个很好的解决方法。
我建议使用非GUI客户端。
答案 4 :(得分:0)
将static
转换为cast
的最佳方式是
int it=5;
char W = static_cast<char>(*it);
答案 5 :(得分:0)
您只需将其存储在char变量中:
//Let's say your original char was 'A'...
int asciivalue = int('A');
// Now asciivalue = 65
//to convert it back:
char orig = asciivalue;
cout << orig << endl;
它将输出'A'。