我正在使用c ++ win32 Api。
我想使用delimiter
分割角色。
该字符如"CN=USERS,OU=Marketing,DC=RAM,DC=COM"
。
我想将字符分成第一个逗号(,)之后。这意味着我只需要
OU=Marketing,DC=RAM,DC=COM.
我已经尝试了strtok
功能,但它只拆分CN = USERS。
我怎样才能实现这个目标?
答案 0 :(得分:3)
尝试以下代码,您应该能够轻松获取每个项目(以','分隔): strtok版本:
char domain[] = "CN=USERS,OU=Marketing,DC=RAM,DC=COM";
char *token = std::strtok(domain, ",");
while (token != NULL) {
std::cout << token << '\n';
token = std::strtok(NULL, ",");
}
std :: stringstream版本:
std::stringstream ss("CN=USERS,OU=Marketing,DC=RAM,DC=COM");
std::string item;
while(std::getline(ss, item, ','))
{
cout << item << endl;
}
看看std :: getline() http://en.cppreference.com/w/cpp/string/basic_string/getline
答案 1 :(得分:1)
使用strchr
非常简单:
char domain[] = "CN=USERS,OU=Marketing,DC=RAM,DC=COM";
char *p = strchr(domain, ',');
if (p == NULL)
{
// error, no comma in the string
}
++p; // point to the character after the comma