当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ Implementing of strtok()用法及代码示例


strtok()函数用于基于定界符标记字符串。它存在于头文件“string.h”中,如果存在则返回指向下一个标记的指针,如果不存在下一个标记,则返回NULL。为了获得所有令牌,其想法是循环调用此函数。

头文件:

#include <string.h>

用法:

char *strtok(char *s1, const char *s2);

在本文中,我们将讨论此函数的实现,其中必须考虑两点:

  • 维护字符串的状态,以确保我们已经提取了多少个令牌。
  • 其次,维护数组中提取的令牌列表以将其返回。

脚步:



  • 创建一个函数strtok(),该函数接受字符串和定界符作为参数并返回char指针。
  • 创建静态变量输入以维护字符串的状态。
  • 检查是否是第一次提取令牌,然后使用它初始化输入。
  • 如果输入为NULL并且提取了所有标记,则返回NULL。
  • 在此步骤中,开始提取令牌并将其存储在数组result []中。
  • 现在,迭代循环直到出现NULL或定界符,然后通过包含'\ 0'返回结果。
  • 到达字符串的末尾时(如果需要),请手动添加“ \ 0”,并在末尾添加此小写字母。

下面是相同的实现:

C++

// C++ program to demonstrate the function 
// strtok() to tokenized the string 
#include <bits/stdc++.h> 
using namespace std; 
char* mystrtok(char* s, char d) 
{ 
    // Stores the state of string 
    static char* input = NULL; 
  
    // Initialize the input string 
    if (s != NULL) 
        input = s; 
  
    // Case for final token 
    if (input == NULL) 
        return NULL; 
  
    // Stores the extracted string 
    char* result = new char[strlen(input) + 1]; 
    int i = 0; 
  
    // Start extracting string and 
    // store it in array 
    for (; input[i] != '\0'; i++) { 
  
        // If delimeter is not reached 
        // then add the current character 
        // to result[i] 
        if (input[i] != d) 
            result[i] = input[i]; 
  
        // Else store the string formed 
        else { 
            result[i] = '\0'; 
            input = input + i + 1; 
            return result; 
        } 
    } 
  
    // Case when loop ends 
    result[i] = '\0'; 
    input = NULL; 
  
    // Return the resultant pointer 
    // to the string 
    return result; 
} 
  
// Driver Code 
int main() 
{ 
    // Given string str 
    char str[90] = "It, is my, day"; 
  
    // Tokenized the first string 
    char* ptr = mystrtok(str, ' '); 
  
    // Print current tokenized string 
    cout << ptr << endl; 
  
    // While ptr is not NULL 
    while (ptr != NULL) { 
        // Tokenize the string 
        ptr = mystrtok(NULL, ' '); 
  
        // Print the string 
        cout << ptr << endl; 
    } 
    return 0; 
}
输出:
It,
is
my,
day




相关用法


注:本文由纯净天空筛选整理自NANDINIJAIN大神的英文原创作品 Implementing of strtok() function in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。