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?
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++
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;
}
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
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';
}
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;
}
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;