我想添加'。'字符串中的另一个字符,但我不知道该怎么做?可能吗?
#include <iostream>
#include <string.h>
using namespace std;
int main(int argc, char *argv[]) {
string input;
char dot='.';
cin>>input;
for(int i=0;i<input.length();i++)
{
if( input[i]>=65 && input[i]<=90)
{
input[i]=input[i]+32;
}
if( (input[i]=='a') || (input[i]=='e') || (input[i]=='i') || (input[i]=='o') || input[i]=='y' || input[i]=='u' )
{
input.erase(i,i+1);
}
input[i]+=dot;
}
cout<<input<<endl;
return 0;
}
答案 0 :(得分:0)
根据你的评论,听起来你想要这样的东西:
#include <iostream>
#include <string>
#include <algorithm>
int main(int argc, char *argv[])
{
std::string input;
std::cin >> input;
std::transform (input.begin(), input.end(), input.begin(), tolower);
size_t i = 0;
while (i < input.length())
{
switch (input[i])
{
case 'a':
case 'e':
case 'i':
case 'o':
case 'y':
case 'u':
{
size_t pos = input.find_first_not_of("aeioyu", i+1);
if (pos == std::string::npos)
pos = input.length();
input.erase(i, pos-i);
break;
}
default:
{
input.insert(i, '.');
i += 2;
break;
}
}
}
std::cout << input << std::endl;
return 0;
}
答案 1 :(得分:0)
来自cpluplus.com参考(http://www.cplusplus.com/reference/string/string/insert/)
// inserting into a string
#include <iostream>
#include <string>
using namespace std;
int main ()
{
string str="to be question";
string str2="the ";
string str3="or not to be";
string::iterator it;
// used in the same order as described above:
str.insert(6,str2); // to be (the )question
str.insert(6,str3,3,4); // to be (not )the question
str.insert(10,"that is cool",8); // to be not (that is )the question
str.insert(10,"to be "); // to be not (to be )that is the question
str.insert(15,1,':'); // to be not to be(:) that is the question
it = str.insert(str.begin()+5,','); // to be(,) not to be: that is the question
str.insert (str.end(),3,'.'); // to be, not to be: that is the question(...)
str.insert (it+2,str3.begin(),str3.begin()+3); // (or )
cout << str << endl;
return 0;
}
另外,请检查以下链接:
http://www.cplusplus.com/reference/string/string/ http://www.cplusplus.com/reference/string/string/append/ http://www.cplusplus.com/reference/string/string/push_back/
答案 2 :(得分:0)
在尝试编写代码之前,您应该写一个详细的代码 它应该做什么的说明。有了你的代码,我 只能猜测:转换为小写(天真地,假装 那么你只会遇到ASCII中的26个非重音字母) 删除所有元音(再次,非常天真,因为确定 无论是否是元音都是非平凡的,即使在 英语 - 暂时考虑y和y),最后 在每个字符后插入一个点。最明显的方式 这样做会是这样的:
std::string results;
for ( std::string::const_iterator current = input.begin(),
end = input.end();
current != end;
++ current ) {
static std::string const vowels( "aeiouAEIOU" );
if ( std::find( vowels.begin(), vowels.end(), *current )
!= vowels.end() ) {
results.push_back(
tolower( static_cast<unsigned char>( *current ) ) );
}
results.push_back( '.' );
}
但是,我只是猜测你想要做什么。
另一种选择是使用std::transform
初始字符串使它全部小写。如果你这样做的话
通常情况下,你会有ToLower
功能
宾语;否则,写起来可能太麻烦了
一个只是为了能够使用std::transform
一次。
答案 3 :(得分:0)
我假设你想要这个输入:
Hello world!
为您提供此输出:
h.ll. w.rld!
您可以随意生成一个新字符串,而不是尝试修改字符串:
#include <cctype>
#include <iostream>
#include <string>
using namespace std;
int main(int argc, char *argv[]) {
string input;
getline(cin, input);
string output;
const string vowels = "aeiouy";
for (int i = 0; i < input.size(); ++i) {
const char c = tolower(input[i]);
if (vowels.find(c) != string::npos) {
output += '.';
} else {
output += c;
}
}
cout << output << '\n';
return 0;
}
注意:
<cctype>
适用于toupper()
。
<string.h>
已弃用;使用<string>
。
用getline()
读取整行; istream::operator>>()
读取文字。
使用tolower()
,toupper()
和&amp; c。用于角色转换。 c + 32
未描述您的意图。
当您需要进行比较时,c >= 'A' && c <= 'Z'
会起作用;您不需要使用ASCII码。
将const
用于不会发生变化的事情。