gpt4 book ai didi

C、 Camel 文转蛇文

转载 作者:太空宇宙 更新时间:2023-11-04 04:15:15 25 4
gpt4 key购买 nike

我完全是初学者,我想制作一个应用程序,对于作为命令行参数提供的每个小写 驼峰式 单词,将打印出它的 蛇形式 等价物。还将大字母变成小字母,并在它们之间制作 "_"

示例:

./coverter Iwant tobe famousAlready.

输出:

i_want
tobe
famous_already

我找到了一些代码可以让字母变小,并在命令行中单独输出单词。但我不知道如何将它们放在一起,如何在函数 main 中吸引到单个字符?这可能吗?

#include <stdio.h>

int main (int argc, char* argv[]);
{
printf("argc = %d\n", argc);

for (int i = 0; i < argc; i++)
{
printf("argv[%d] = %s\n", i, argv[i]);
}
}

char change()
{
char words[30];
int ch;

printf ("Give the words: ");

int i=0;

while ((ch=getchar()) != EOF)
{
slowko[i]=ch;
if(isupper(slowko[i])) /* isupper, robi rzeczy - sprawdza czy */
/* litera z sekwencji jest duza */
{
slowko[i]=tolower(ch); /*zamien duzy znak na maly*/
printf("_");
}
else if(slowko[i] == ' ')
{
printf("\n");
}

printf ("%c", slowko[i]);
i++;
}
}

最佳答案

argv 数组中的命令行参数从索引 1 开始。也许这不是最优雅的解决方案,但它有效:

#include <stdio.h>
#include <ctype.h>

void print_snake_case(const char str[]){

int i = 0;
while (str[i] != '\0')
{
if(isupper((unsigned char) str[i])) /*isupper, robi rzeczy - sprawdza czy litera z sekwencji jest duza*/
{
const char ch = tolower((unsigned char) str[i]); /*zamien duzy znak na maly*/

/*
Different order of "_": it should be placed after
the character in case it's at the beginning of the word.
And before the character if it's not at the beginning.
*/
if(i != 0)
{
printf("_");
printf ("%c", ch);
}
else
{
printf ("%c", ch);
printf("_");
}
}
else
printf ("%c", str[i]);


i++;
}

printf("\n");
}

int main (int argc, char* argv[])
{
for (int i = 1; i < argc; i++)
{
print_snake_case(argv[i]);
}
}

输出:

$ ./converter Iwant tobe famousAlready
i_want
tobe
famous_already

关于C、 Camel 文转蛇文,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52919818/

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