web-dev-qa-db-fra.com

C: obtenir la sous-chaîne avant un certain caractère

Par exemple, j'ai cette chaîne: 10.10.10.10/16

et je veux supprimer le masque de cette IP et obtenir: 10.10.10.10

Comment cela pourrait-il être fait?

17
Itzik984

Il suffit de mettre un 0 à la place de la barre oblique

#include <string.h> /* for strchr() */

char address[] = "10.10.10.10/10";
char *p = strchr(address, '/');
if (!p) /* deal with error: / not present" */;
*p = 0;

Je ne sais pas si cela fonctionne en C++

16
pmg

Voici comment vous le feriez en C++ (la question a été marquée comme C++ lorsque j'ai répondu):

#include <string>
#include <iostream>

std::string process(std::string const& s)
{
    std::string::size_type pos = s.find('/');
    if (pos != std::string::npos)
    {
        return s.substr(0, pos);
    }
    else
    {
        return s;
    }
}

int main(){

    std::string s = process("10.10.10.10/16");
    std::cout << s;
}
17
Andy Prowl
char* pos = strstr(IP,"/"); //IP: the original string
char [16]newIP;
memcpy(newIP,IP,pos-IP);   //not guarenteed to be safe, check value of pos first
3
75inchpianist

Je vois que c'est en C donc je suppose que votre "chaîne" est "char *"?
Si c'est le cas, vous pouvez avoir une petite fonction qui alterne une chaîne et la "coupe" à un caractère spécifique:

void cutAtChar(char* str, char c)
{
    //valid parameter
    if (!str) return;

    //find the char you want or the end of the string.
    while (*char != '\0' && *char != c) char++;

    //make that location the end of the string (if it wasn't already).
    *char = '\0';
}
1
Roee Gavirel

Exemple en C++

#include <iostream>
using namespace std;

int main() 
{
    std::string addrWithMask("10.0.1.11/10");
    std::size_t pos = addrWithMask.find("/");
    std::string addr = addrWithMask.substr(0,pos);
    std::cout << addr << std::endl;
    return 0;
 }
0
Thiago Navarro

Exemple dans c

char ipmask[] = "10.10.10.10/16";
char ip[sizeof(ipmask)];
char *slash;
strcpy(ip, ipmask);
slash = strchr(ip, '/');
if (slash != 0)
    *slash = 0;
0
Olaf Dietsche