Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
135 views
in Technique[技术] by (71.8m points)

c - get the last word (uppercase)

I'm writing a code to print the last word in the string in uppercase and remove special characters or numbers if there is any, my code for now just print the last word how can I make it uppercase a remove any special characters

#include <stdio.h>
#include <unistd.h>

int main()
{
    char line[80] = "abc dfg, egh.";
    int i = 0, j;
    char *last_word;

    while (line[i] != '')
    {
        if (line[i] <= 32 && line[i + 1] > 32)
            last_word = &line[i + 1];
        i++;
    }
    i = 0;
    while (last_word && last_word[i] > 32)
    {
        write(1, &last_word[i], 1);
        i++;
    }
}
question from:https://stackoverflow.com/questions/65896866/get-the-last-word-uppercase

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You need to add ctype.h library to use toupper function. I checked string character by character is an alphabetic character or not thanks to ASCII values the code is here:

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

int main()
{
    char line[80] = "abc dfg, egh.";
    int i = 0, j;
    char *last_word;

    while (line[i] != '')
    {
        if (line[i] <= 32 && line[i + 1] > 32)
            last_word = &line[i + 1];
        i++;
    }
    i = 0;
    while (last_word && last_word[i] > 32)
    {
        if ((last_word[i] > 64 && last_word[i] <91) || (last_word[i]> 96 && last_word[i] < 123 ))
        printf("%c", toupper(last_word[i]));
        
        i++;
    }
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...