Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7735735
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T07:34:31+00:00 2026-06-01T07:34:31+00:00

strtok function uses a static variable for parsing the string into tokens. So this

  • 0

strtok function uses a static variable for parsing the string into tokens. So this causes a conflict when multiple calls are done. Other than using threads how could I do the following: thx
– Can I use a function pointer to allocate the function at 2 different places? Would this make the static variable inside “strtok” allocate at 2 different places?

//breaking up first by Sentence and than by Word.
char phrase[] = "My dog has fleas.\nAnd he gave them to me."; 
char del1[]   = "\n";
char del2[]   = " ";
char *token1;
char *token2;


token1 = strtok( phrase, del1);

while( token1 != NULL )
{
    printf("Sentence:  %s",token1);

    token2 = strtok( token1, del2);
    while( token2 != NULL ){
        token2 = strtok( NULL, del2);
        printf("WORD:  %s",token2);
    }

    token1 = strtok( NULL, del1);
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T07:34:32+00:00Added an answer on June 1, 2026 at 7:34 am

    Instead of using strtok, perhaps use strsep. Note that I have extracted the nested loop into a function – nested loops suck!

    EDITED: changed to use strsep directly

    /* print each word in a string*/
    static void print_words(char *s)
    {
        while (s && *s) {
            char *t = strsep(&s, " ");
            printf("WORD:  %s\n", t);
        }
    }
    
    void loop(void)
    {
        /* duplicate string in case it is read-only */
        char *phrase = strdup("My dog has flees.\nAnd he gave them to me.");
    
        while (phrase) {
            char *s = strsep(&phrase, "\n");
            printf("Sentence:  %s\n", s);
            print_words(s);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

char *strtok(char *s1, const char *s2) repeated calls to this function break string s1
strtok() function uses static variable. Thus it's not re-entrant. and cannot be used to
Whats the use of function strtok() in PHP? How is better than other string
I have a function using strtok like this void f1(char *name) { ... char
I found strtok function has some trick during you pass the same string to
I have this Java function that's supposed to convert the string s to title
I am using a simple program to tokenize a string using strtok function. Here
c++ function, strtok() cplusplus.com Will this example suffer from buffer overrun if str is
I am serializing some C structure to string and than deserializing it with strtok()
I'm out of ideas! If I do this: string strTo = email1@domain.com; string strFrom

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.