web-dev-qa-db-ja.com

C:特定の文字の前に部分文字列を取得する

たとえば、次の文字列があります:10.10.10.10/16

そして、私はそのIPからマスクを削除して取得したい:10.10.10.10

これはどのように行うことができますか?

17
Itzik984

スラッシュの位置に0を置くだけです

#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;

これがC++で機能するかどうかわかりません

16
pmg

C++でどのように実行するかを以下に示します(質問には、答えたときにC++のタグが付けられていました)。

#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

これはCにあるので、「文字列」は「char *」ですか?
その場合、文字列を交互に切り替えて特定の文字で「カット」する小さな関数を使用できます。

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

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

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