C++ strtok()

Christine_Yang's avatar
Published Aug 23, 2022Updated Dec 21, 2022
Contribute to Docs

The strtok() function breaks a string into a series of tokens using a list of delimiters.

Note: strtok() only works on C-style strings of type char str[];, not C++ style strings of type string str;.

  • Looking for an introduction to the theory behind programming? Master Python while learning data structures, algorithms, and more!
    • Includes 6 Courses
    • With Professional Certification
    • Beginner Friendly.
      75 hours
  • Learn C++ — a versatile programming language that’s important for developing software, games, databases, and more.
    • Beginner Friendly.
      11 hours

Syntax

char *token = strtok(string, delimiter);

The strtok() function splits the C-style string parameter into tokens based on one or more delimiters, and returns the pointer to the first token.

Subsequent calls to strtok(), with string set to NULL, return a pointer to the next tokenized string. When there are no tokens left to retrieve, a NULL pointer is returned.

Codebyte Example

The following example splits up a comma-delimited list and prints out the result:

Code
Output
Loading...

All contributors

Contribute to Docs

Learn C++ on Codecademy

  • Looking for an introduction to the theory behind programming? Master Python while learning data structures, algorithms, and more!
    • Includes 6 Courses
    • With Professional Certification
    • Beginner Friendly.
      75 hours
  • Learn C++ — a versatile programming language that’s important for developing software, games, databases, and more.
    • Beginner Friendly.
      11 hours