我一直在尝试使用getline来识别字符串输入中的空格。单词之间插入的数字是特殊字符,而不是空格。当我使用cin时,函数正常工作,但它看不到空格。
如何更改以下内容以使其有实际的空格?
下面是我使用getline(字符串中的字母不再移动)的代码:
#include "stdafx.h"
using namespace std;
#include <iostream>
#include <string>
void encrypt(std::string &iostr, int key)
{
key %= 26;
int ch;
for (auto &it : iostr)
{
ch = tolower(it) + key;
if (ch > 'z')
ch -= 26;
it = ch;
}
}
int main()
{
string source;
int key = 1;
cout << "Paste cyphertext and press enter to shift 1 right: ";
getline(cin, source);
encrypt(source, key);
cout << source << "";
system("pause");
return 0;
}
您的encrypt
插入特殊字符的原因是循环不注意空格,以与常规字符相同的方式通过key
代码点移动它们。
添加检查字符是否为小写字母将解决这个问题:
for (auto &it : iostr)
{
ch = tolower(it);
if (!islower(ch)) {
continue;
}
ch += key;
if (ch > 'z') {
ch -= 26;
}
it = ch;
}
通过键移动所有字符,包括空格。如果你想让这些空格留下来,你需要把它们从你的班次中排除。例如,您可以这样做:
void encrypt(std::string &iostr, int key)
{
key %= 26;
int ch;
for (auto &it : iostr)
{
if (it != ' ') //if not space character then shift
{
ch = tolower(it) + key;
if (ch > 'z')
ch -= 26;
it = ch;
}
}
}