0

我想添加“。” 除了字符串中的另一个字符之外的字符,但我不知道该怎么做?可能吗?

#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;
}
4

4 回答 4

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(), &c。用于字符转换。c + 32没有描述你的意图。

  • 当您需要比较时,c >= 'A' && c <= 'Z'将起作用;你不需要使用 ASCII 码。

  • 用于const不会改变的事物。

于 2012-11-27T00:24:36.030 回答
0

在尝试编写代码之前,您应该编写一份详细说明它应该做什么的规范。使用您的代码,我只能猜测:转换为小写(天真,假装您只会遇到 ASCII 中的 26 个非重音字母),然后删除所有元音(再次,非常天真,因为确定某物是否是元音是不平凡的,即使在英语中——考虑y in yet和day),最后在每个字符后插入一个点。最明显的方法是:

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一次而编写一个可能太麻烦了。

于 2012-11-27T00:15:46.270 回答
0

Based on your comments, it sounds like you want something like this:

#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;
}
于 2012-11-26T23:36:10.823 回答
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/推回/

于 2012-11-27T00:01:35.153 回答