I'm programming on a MCU with C and I need to parse a null-terminated string which contains an IP address into 4 single bytes. I made an example with C++:

#include <iostream>
int main()
{
    char *str = "192.168.0.1\0";
    while (*str != '\0')
    {
            if (*str == '.')
            {
                    *str++;
                    std::cout << std::endl;
            }
            std::cout << *str;
            *str++;
    }
    std::cout << std::endl;
    return 0;
}

This code prints 192, 168, 0 and 1 each byte in a new line. Now I need each byte in a single char, like char byte1, byte2, byte3 and byte4 where byte1 contains 1 and byte4 contains 192... or in a struct IP_ADDR and return that struct then, but I dont know how to do it in C. :(

link|improve this question
2  
This code does not print "bytes" with values 192...: it prints characters ... 3 characters for 1 9 2 ... – pmg Feb 9 at 13:24
Oh ... just realized what the user asked. By looking at code with couts I thought he just wanted to print them. He actually wants the bytes – Lefteris Feb 9 at 13:33
Explicitly adding \0 on the end of a string literal is very strange. By initializing char *a = "foo\0", you make a string literal with 5 characters that has two nul bytes at the end. – William Pursell Feb 9 at 13:44
feedback

4 Answers

up vote 1 down vote accepted

You can do it character-by-character, as does the C++ version in your question.

/* ERROR CHECKING MISSING */
#include <ctype.h>
#include <stdio.h>
int main(void) {
    char *str = "192.168.0.1", *str2;
    unsigned char value[4] = {0};
    size_t index = 0;

    str2 = str; /* save the pointer */
    while (*str) {
        if (isdigit((unsigned char)*str)) {
            value[index] *= 10;
            value[index] += *str - '0';
        } else {
            index++;
        }
        str++;
    }
    printf("values in \"%s\": %d %d %d %d\n", str2,
              value[0], value[1], value[2], value[3]);
    return 0;
}
link|improve this answer
this one works as well, tyvm! Took me a while until I figured how this *= 10 and += *str - '0' does it! :P – BETSCH Feb 13 at 10:48
The initialization (unsigned char value[4] = {0};) is important. Don't forget it. – pmg Feb 13 at 11:04
feedback

There is a standard function that will do this for you.

inet_addr("127.0.0.1") will return a long integer with the IP address broken into bytes.

The inet_addr() function converts the Internet host address cp from IPv4 numbers-and-dots notation into binary data in network byte order.

According to the man page you might have to include the following headers:

#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
link|improve this answer
I don't think my PIC18 supports that function :( – BETSCH Feb 9 at 13:33
@infact: you should consider using inet_pton instead, it's a lot more portable and flexible. – jørgensen Feb 9 at 15:35
feedback

a nice way to do this in C is to use the string tokenizer. In the example code below the bytes are saved in the bytes array and are also printed with the printf function. Hope it helps

#include <string.h>

int main()
{
    char str[] = "192.168.0.1";
    unsigned char bytes[4];
    int i = 0;

    char* buff = malloc(10);
    buff = strtok(str,".");
    while (buff != NULL)
    {
       //if you want to print its value
       printf("%s\n",buff);
       //and also if you want to save each byte
       bytes[i] = (unsigned char)atoi(buff);
       buff = strtok(NULL,".");
       i++;
    }
    free(buff);
    return 0;
}
link|improve this answer
this one works if I comment = malloc(10); so only char* buff; remains. If I dont comment I get an error, "invalid conversion from void* to char*", tyvm – BETSCH Feb 13 at 10:47
It DOES NOT work the way you think it does. It's an error to mess with unallocated pointers. If you get this error it means that you are compiling C++ code and not C code. Make sure to 1) Either correct the compiler's flags 2) If it's C++ you want just change the line to: char* buff = (char*) malloc(10); – Lefteris Feb 13 at 10:56
feedback
for(int i = 0, r = 0; i < 4; str += r + 1, i++) {
  sscanf(str, "%d%n", &b[i], &r);
}

or

 sscanf(str, "%d.%d.%d.%d", b, b + 1, b + 2, b + 3);
link|improve this answer
tyvm, works like a charm :) edit: oh wait, my pic18 doesnt have that function either :( – BETSCH Feb 9 at 13:41
Why don't you see which of the function inside the string.h header of the C standard library are supported by the pic microcontroller you work with first and then tell us? Both sscanf and strtok (perreal and my answer respectively) are c standard library functions. We have to know how much of it is available to you – Lefteris Feb 9 at 13:49
Theres the library: link and sorry I'm new to stackoverflow, thought because I tagged it with pic18 and c18 you guys know the lib but then I realized I also tagged it with C – BETSCH Feb 9 at 14:02
page 131 of the linked pdf strtok, strtokpgm, strtokpgmram, strtokrampgm are supported. So my answer can be used. Did you check it out? (it's the 3rd one) – Lefteris Feb 9 at 14:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.