gpt4 book ai didi

c - 从字符串中获取最后一个单词

转载 作者:太空宇宙 更新时间:2023-11-04 03:47:58 24 4
gpt4 key购买 nike

在作业中,我需要能够从二维字符串数组中找到最后一个单词(每行/字符串的最后一个单词),以便我可以对其应用密码。我试过这个:

space = strrchr((*array)[i], ' ');                                                 
if ((name = strstr((*array)[i], search)) != NULL) {
cipher = 1;
}
if (cipher && name > space) {
//Cipher code here

空间和搜索定义为:

char *space, *search;

*array 是指向在 main() 中声明的二维数组的指针,我在另一个函数中将值加载到其中。

代码可以运行,但程序在提取第一行的最后一个字后崩溃。调试时,出现错误:Projekt 1.exe 中 0x009915B0 处未处理的异常:0xC0000005:访问冲突读取位置 0xCCCCCCCC。第一行的单词被正确提取,并且密码有效(我试图在每一行之后打印它)。

我已经尝试使用谷歌搜索并引用了 StackOverflow 上的其他主题,但对我帮助不大。谁能指出正确的方向,告诉我如何获取每一行的最后一个词?

编辑:在这种情况下我使用的是 Albam 密码:

for (i = 0; i < lines; i++) {

space = strrchr((*array)[i], ' ');
if ((name = strstr((*array)[i], search)) != NULL) {
cipher = 1;
}

if (cipher && name > space) {

cipher = 1;
for (j = 0; j < strlen(*array[i]); j++) {

if ((*array)[i][j] < 'Z' && (*array)[i][j] > 'A' || (*array)[i][j] < 'z' && (*array)[i][j] > 'a') {
if (toupper((*array)[i][j]) > 'A' && toupper((*array)[i][j]) < 'N')
(*array)[i][j] = (*array)[i][j] + 13;
if (toupper((*array)[i][j]) > 'N' && toupper((*array)[i][j]) < 'Z')
(*array)[i][j] = (*array)[i][j] - 13;
}
}
}
}

最佳答案

希望对你有帮助

感兴趣的代码

for(i=0; i<rows; i++)
{
for(j=0; j<cols; j++)
{

lastWord = strrchr(array[i][j], ' ');
if (lastWord == NULL)
lastWord = array[i][j];
else
lastWord++;
printf("%s\n", lastWord);
lastWord = NULL;

}
}

完整代码

int i,j;
char *line = NULL;
int read, len;
char*** array;
char* lastWord;
int rows, cols;

FILE* fp;
fp = fopen("input.txt", "r");


if(fp != NULL)
{
// Read the number of rows and cols
line = NULL;
read = getline(&line, &len, fp);
sscanf(line, "%d,%d", &rows, &cols);

// allocate memory and read the input strings
array = (char***)malloc(sizeof(char**) * rows);
for(i=0; i<rows; i++)
{
array[i] = (char**)malloc(sizeof(char**) * cols);
}

for(i=0; i<rows; i++)
{
for(j=0; j<cols; j++)
{
read = getline(&line, &len, fp);
assert((read >= 0) && (read <= 1024) && (line != NULL));

array[i][j] = (char*)malloc(read+1);
strncpy(array[i][j], line, read-1);
}
}

if(line != NULL)
{
free(line);
line = NULL;
}

for(i=0; i<rows; i++)
{
for(j=0; j<cols; j++)
{

lastWord = strrchr(array[i][j], ' ');
if (lastWord == NULL)
lastWord = array[i][j];
else
lastWord++;
printf("%s\n", lastWord);
lastWord = NULL;

}
}


for(i=0; i<rows; i++)
for(j=0; j<cols; j++)
free(array[i][j]);
for(i=0; i<rows; i++)
free(array[i]);
free(array);
}
else
{
printf("Unable to open the file\n");
}

fclose(fp);

return 0;

关于c - 从字符串中获取最后一个单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22884694/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com