我正在尝试编写一段代码,将char数组中的字母逐个与确定的字母(字母'l')进行比较。当在输出字符串中出现这种情况时,有两个‘l’。例如,"lily“应该变成"llilly”。我不知道如何在C中实现这一点,因为如下所示:
strncmp (word[indx],'l',1) //where indx is an iterator of the char array 'word'
无效,因为第一个参数应该是'word‘,但之后就没有办法遍历'word’了。
当然,如果我们这样写:
strncmp (word,'l',indx)
问题是,现在在indx
等于或大于2之后,我们一次检查多个字母,而我们真正想要的是一次检查一个字符。
这是我到目前为止的代码:
#include <stdio.h>
#include <string.h>
const char* ModifyString (char word []);
int main(){
char word[6]="Hello";
printf("The result is %s \n", ModifyString(word));
return 0;
}
const char* ModifyString (char word []) {
size_t lengthString=strlen(word);
char modifiedString[lengthString*2+1]; //to fit the nul terminator and all the 'l's in case the word only contained 'l's.
int indxModWord=0;
for (int indx=0; indx<lengthString;indx++) {
//This line does not express what I want to do:
if (strncmp(word,"l",indx)==0) {
modifiedString[indxModWord]=word[indx];
indxModWord++;
}
// if 'l' in word make it appear twice in the output string
else {
modifiedString[indxModWord]='l';
indxModWord++;
modifiedString[indxModWord]='l';
indxModWord++;
}
}
printf("%s", modifiedString);
}
有没有人知道我应该怎么用C语言做这件事?
发布于 2021-07-25 12:08:39
只需与其他答案中的字符进行比较。
当然,如果您愿意,也可以使用strncmp
来比较字符。
strncmp (&word[indx],(char []){'l'},1);
或者,您可以编写以下函数:
int compareCharsUsingStrncmp(const char a, const char b)
{
return strncmp((char[]){a}, (char[]){b}, 1);
}
或
int compareCharsUsingStrncmp(const char a, const char b)
{
return strncmp(&a, &b, 1);
}
智能编译器甚至不会调用strncmp
:)
compareCharsUsingStrncmp:
movzx eax, dil
movzx esi, sil
sub eax, esi
ret
发布于 2021-07-25 11:09:00
在遍历给定的字符串时,检查字符串的当前字符是否为目标字符(在本例中为'l')。
代码:
const char* ModifyString (char word [])
{
size_t lengthString=strlen(word);
char modifiedString[lengthString*2+1]; //to fit the nul terminator and all the 'l's in case the word only contained 'l's.
int indxModWord=0;
char targetCharacter = 'l';
for (int indx=0; indx<lengthString; indx++)
{
if (word[indx] != targetCharacter)
{
modifiedString[indxModWord] = word[indx];
indxModWord++;
}
else
{
modifiedString[indxModWord] = targetCharacter;
indxModWord++;
modifiedString[indxModWord] = targetCharacter;
indxModWord++;
}
}
modifiedString[indxModWord] = '\0';
printf("%s", modifiedString);
}
发布于 2021-07-25 11:14:40
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
char *ModifyString (char* word) {
size_t lengthString = strlen(word);
//to fit the nul terminator and all the 'l's in case the word only contained 'l's.
char *modifiedString;
modifiedString=(char*)malloc(lengthString*2+1);
size_t indxModWord=0;
for (int indx=0; indx<lengthString;indx++) {
//This line does not express what I want to do:
if (word[indx] != 'l'){
modifiedString[indxModWord]=word[indx];
indxModWord++;
}
// if 'l' in word make it appear twice in the output string
else {
modifiedString[indxModWord]='l';
indxModWord++;
modifiedString[indxModWord]='l';
indxModWord++;
}
}
return (char *)modifiedString;
}
int main(){
char word[]="Hello";
char *result ;
result = ModifyString(word);
printf("The result is %s \n",result);
return 0;
}
请确认这是否是您要找的东西。
https://stackoverflow.com/questions/68517836
复制相似问题