0

我正在使用strstr()函数,但我遇到了崩溃。

这部分代码因错误“访问冲突读取位置 0x0000006c ” 而崩溃。strstr(p_czCharactersToDelete, (const char*)p_czInputString[index]))

这是完整的代码...

#include "stdafx.h"    
#include <iostream>
#include <string>
void delchar(char* p_czInputString, const char* p_czCharactersToDelete)
{
    for (size_t index = 0; index < strlen(p_czInputString); ++index)
    {
        if(NULL != strstr(p_czCharactersToDelete, (const char*)p_czInputString[index]))
        {
            printf_s("%c",p_czInputString[index]);

        }
    }
}
int main(int argc, char* argv[])
{
    char c[32];
    strncpy_s(c, "life of pie", 32); 
    delchar(c, "def");

    // will output 'li o pi'
    std::cout << c << std::endl;
}
4

2 回答 2

2

的原型strstr()如下,

char * strstr ( char * str1, const char * str2 );

该函数用于从主字符串中定位子字符串。它返回指向 in 的第一次出现的指针,如果不是str2in的一部分,则返回空指针。str1str2str1

在您的情况下,您将错误的参数传递给strstr(). 你在打电话, strstr(p_czCharactersToDelete, (const char*)p_czInputString[index]));这是错误的。因为指针p_czCharactersToDelete指向子字符串常量,又p_czInputString指向主字符串。调用strstr()asstrstr(p_czInputString, p_czCharactersToDelete);并在函数中进行相应的更改delchar()

于 2013-05-25T12:14:05.707 回答
1

你用错了strstr。可能你需要strchrstrpbrk

#include <cstring>
#include <algorithm>

class Include {
public:
    Include(const char *list){ m_list = list; }

    bool operator()(char ch) const
    {
        return ( strchr(m_list, ch) != NULL );
    }

private:
    const char *m_list;
};

void delchar(char* p_czInputString, const char* p_czCharactersToDelete){
    Include inc(p_czCharactersToDelete);
    char *last = std::remove_if(p_czInputString, p_czInputString + strlen(p_czInputString), inc);
    *last = '\0';
}
于 2013-05-25T12:22:58.353 回答