Tagged Questions

strtok() is a Standard C (ISO 9899:1989) function for splitting a string in tokens. strtok_r() is the thread-safe variant defined by IEEE Std 1003.1:2004 (aka "POSIX").

learn more… | top users | synonyms

7
votes
4answers
522 views

Why is strtok() Considered Unsafe?

What feature(s) of strtok is unsafe (in terms of buffer overflow) that I need to watch out for? What's a little weird to me is that strtok_s (which is "safe") in Visual C++ has an extra "context" ...
6
votes
5answers
353 views

Double split in C

OK. For example I have this line in my txt file: 1|1,12;7,19;6,4;8,19;2,2 As you can see, it has 2 parts, separated by |. I have no problems getting both parts, and separating second part ...
5
votes
6answers
168 views

Using strtok in c

I need to use strtok to read in a first and last name and seperate it. How can I store the names where I can use them idependently in two seperate char arrays? #include <stdio.h> #include ...
5
votes
2answers
348 views

Problem with strtok and segmentation fault

I have two helper functions to break up strings in the format of decimal prices ie. "23.00", "2.30" Consider this: char price[4] = "2.20"; unsigned getDollars(char *price) { return ...
5
votes
3answers
299 views

Why does the following C program give a bus error?

I think it's the very first strtok call that's failing. It's been a while since I've written C and I'm at a loss. Thanks very much. #include <stdio.h> #include <string.h> int main(int ...
5
votes
3answers
475 views

Problem with using getline and strtok together in a program

In the below program , I intend to read each line in a file into a string , break down the string and display the individual words.The problem I am facing is , the program now outputs only the first ...
5
votes
7answers
2k views

How to split a string to 2 strings in C

I was wondering how you could take 1 string, split it into 2 with a delimiter, such as space, and assign the 2 parts to 2 separate strings. I've tried using strtok(); but to no avail. Thanks! Mr. ...
5
votes
9answers
14k views

Using strtok with a string argument (instead of char*)?

I have a string that I would like to tokenize. But the strtok() function requires my string to be a char*. How can I do this quickly? token = strtok(str.c_str(), " "); fails because it turns it into ...
4
votes
4answers
135 views

Reading a file in C

I have an input file I need to extract words from. The words can only contain letters and numbers so anything else will be treated as a delimiter. I tried fscanf,fgets+sscanf and strtok but nothing ...
4
votes
2answers
680 views

strtok function thread safety

I have been spending some time in debugging a programme which gives segmentation fault. The bug is quite indeterministic and intermittent, which is annoying. I narrowed it down to the calling of ...
4
votes
4answers
340 views

Memory leak when spliting sentences with strtok

I'm trying to split a string into sentences (delimited by sentence delimiters). The code itself it working but I keep getting memory leaks in the function. char ** splitSentences(char *string) { ...
4
votes
1answer
461 views

Unexpected strtok() behaviour

I'm trying to count the number of words in a file with strtok(). /* * code.c * * WHAT * Use strtok() to count the number of words in a file. */ #include <stdio.h> #include ...
4
votes
10answers
2k views

C++ How to convert string to char*

I need to convert a string to a char * for use in strtok_s and have been unable to figure it out. c_str() converts to a const char *, which is incompatible. Also, if someone could explain to me why ...
3
votes
2answers
73 views

Breaking down string and storing it in array

i want to break down a sentence and store each string in an array. Here is my code: #include <stdio.h> #include <string.h> int main(void) { int i = 0; char* strArray[40]; char* ...
3
votes
2answers
85 views

I misunderstand win32 (and maybe libc) strtok( )

In some CGI code, I need to encode rarely-occurring '&', '<', and '>' chars. In the encoding function, I want to get out right away if there are no such chars in the input string. So, at entry, ...
3
votes
5answers
846 views

C: creating array of strings from delimited source string

What would be an efficient way of converting a delimited string into an array of strings in C (not C++)? For example, I might have: char *input = "valgrind --leak-check=yes --track-origins=yes ...
3
votes
7answers
3k views

developed a strtok alternative

I have developed my own version of strtok. Just to practice the use of pointers. Can anyone see any limitations with this or anyway I can improve. void stvstrtok(const char *source, char *dest, ...
2
votes
3answers
121 views

Problem with string overflow with strtok

I have a file of data: C0001|H|Espresso Classics|The traditional espresso favourites. C0002|H|Espresso Espresions|Delicious blend of espresso, milk, and luscious flavours. C0003|H|Tea & ...
2
votes
3answers
235 views

Tokenize command line input in C

trying to take a line of text and tokenize it into a filename and arguments for execvp(). Here's my code, getArguments() is the broken function. Currently, trying to print arguments[0] results in a ...
2
votes
1answer
293 views

Segfault while using Strtok() in C

I'm using C to write my own shell and to handle stream redirects (">" and "<") I'm using strtok() to get them and store relevant information to use later in the program. I'm not sure why I'm ...
2
votes
4answers
278 views

strtok program crashing

the program for strtok given on http://www.opengroup.org/onlinepubs/000095399/functions/strtok.html crashes everytime.. #include <string.h> ... char *token; char *line = "LINE TO BE ...
2
votes
5answers
381 views

valgrind complains doing a very simple strtok in c

Hi I'm trying to tokenize a string by loading an entire file into a char[] using fread. For some strange reason it is not always working, and valgrind complains in this very small sample program. ...
2
votes
6answers
2k views

Segmentation Fault when using strtok_r

Can anyone explain why I am getting segmentation fault in the following example? #include <stdio.h> #include <string.h> int main(void) { char *hello = "Hello World, Let me live."; ...
2
votes
4answers
1k views

C - strtok and strcmp

I am having a bit of trouble using strtok with strcmp. //Handles the header sent by the browser char* handleHeader(char *header){ //Method given by browser (will only take GET, POST, and ...
1
vote
3answers
34 views

Confusion using strtok

Im using strtok and getting a little confused. I have an array holding a lot of strings and I want to tokenize the strings into a temporary array. When i perform the strtok it stored the first token ...
1
vote
3answers
45 views

What's the difference between strtok_r and strtok_s in C?

I'm trying to use this function in a C program that needs to be able to compile in Linux and Windows. At first I tried using strtok_r, but then when I compiled on windows, it complained about the ...
1
vote
2answers
34 views

strtok_s behaviour with consecutive delimiters

I'm parsing 3 values in parallel which are separated with a specific separator. token1 = strtok_s(str1, separator, &nextToken1); token2 = strtok_s(str2, separator, &nextToken2); token3 = ...
1
vote
6answers
53 views

strtok segmentation fault

I am trying to understand why the following snippet of code is giving a segmentation fault: void tokenize(char* line) { char* cmd = strtok(line," "); while (cmd != NULL) { printf ...
1
vote
5answers
52 views

Need to know when no data appears between two token separators using strtok()

I am trying to tokenize a string but I need to know exactly when no data is seen between two tokens. e.g when tokenizing the following string "a,b,c,,,d,e" I need to know about the two empty slots ...
1
vote
1answer
34 views

C strtok on global string from multiple functions

I use a global string that I want to parse. Parsing is done from multiple functions. For example I extract first token in func1(), then second token from the same global string in func2() and etc... ...
1
vote
2answers
43 views

strtok only returning one token

I'm writing a simple shell that accepts some standard commands like cd and ls in C. I'm trying to implement a feature where the user can enter a ";" in between commands so that a bunch of commands can ...
1
vote
2answers
67 views

add null end of string

I have a string declared char sentence[100]; In a loop, I read different sentences from a txt file and I'm trying to do this: sentence = strtok (sentencefromtxtfile," ,.-"); //seperating word by word ...
1
vote
4answers
57 views

sequence of delimiters in function strtok

im trying to obtain tokens with function strtok() in C++. Is very simple when you use just 1 delimiter like: token = strtok(auxiliar,"[,]");. This will cut auxiliar everytime the function finds ...
1
vote
2answers
79 views

ะก++ strtok cant get 2 token Borland

`char *ParseCmdX(char *buf,int len) { char *p; p = strtok(buf," ,"); p = strtok(NULL," ,"); char *ptr = (char *)malloc(strlen(p)+1); strcpy(ptr,p); return ptr; }` Why am i ...
1
vote
1answer
103 views

Problems with strtok()

I have been wrestling with this for a while. I know it's a lot of code to look at, but I have no idea where the problem lies and can't seem to narrow it down. I will bounty it. I wrote this class to ...
1
vote
2answers
75 views

Seg fault when trying to use strtok() on a 2D array

I was hoping someone could help me figure out why I am getting a segmentation fault on my code below. My user has inputted a line of text, which is passed to the parse function. The parse function ...
1
vote
2answers
66 views

PHP Token replaces html entities

I want to make certain words/strings like links if found in the text. I have a piece of code from php.bet which does that, but it also removes the beginning and end of tags from <a ...
1
vote
2answers
323 views

How do I save string tokens to char variables?

I have a string which has been sent using udp. Now I want to read the string, tokenize it and save it to an char array. Only the first letter of each word is saved. So I just get 5 'e's from element01 ...
1
vote
2answers
113 views

C++ Splitting the input problem

I am being given input in the form of: (8,7,15) (0,0,1) (0,3,2) (0,6,3) (1,0,4) (1,1,5) (2,1,6) (2,2,7) (2,5,8) (3,0,9) (3,3,10) (3,4,11) (3,5,12) (4,1,13) (4,4,14) (7,6,15) where I have to ...
1
vote
2answers
317 views

What are the differences between strtok and strsep in C

Could someone explain me what differences there are between strtok() and strsep()? What are the advantages and disadvantages of them? And why would I pick one over the other one.
1
vote
2answers
99 views

strtok_r to extract string inside quotes

my string is: He is a "funny" guy How can I extract that using strtok_r? strtok_r(str, "\"", &last_pointer); Is this a correct way of doing it? will the statement above skip first " ?
1
vote
1answer
88 views

All objects have the same name

I'm doing my final project for my algorithms course in C. For the project, we have to take an input text file that contains lines like: P|A|0 or E|0|1|2 The former indicates a vertex to be ...
1
vote
1answer
239 views

How I can skip a blank line in an input file when using strtok?

I want to pass lines of a file using strtok; the values are comma separated. However, strtok also reads blank lines which only contain spaces. Isn't it suppose to return a null pointer in such a ...
1
vote
3answers
107 views

Error in strtok function in C

I am using a simple program to tokenize a string using strtok function. Here is the code - # include <stdio.h> char str[] = "now # time for all # good men to # aid of their country"; //line a ...
1
vote
3answers
252 views

strtok and strcpy error

i used strtok to split a string. [ UPDATE ] used youre comments and answer for the new version below, but didnt work atm int Crawl :: splitUrl(char ***tmp, int max_length, char *url) { int idx=0; ...
1
vote
2answers
153 views

PHP: IF statement works on its own, but not inside WHILE loop

The problem: Let's say I have $keyword = a sentence entered into a search box, such as "large white boxes" What I need to do is break this into individual words, and then test each word to make sure ...
1
vote
1answer
295 views

Process text file by C++ — extract a certain string from text file

I am a new learner to C++. I have a text file, its contents like following: Systemname localtesthost SystemIp X.X.X.X Systemowner root ... Now I want to extract the value of "Systemname", ...
1
vote
5answers
1k views

How to use strtok in C properly so there is no memory leak?

I am somewhat confused by what happens when you call strtok on a char pointer in C. I know that it modifies the contents of the string, so if I call strtok on a variable named 'line', its content will ...
1
vote
2answers
198 views

strtok fails to tokenize?

In the following, I'm trying to split string without creating copies using strok #include <string.h> void func(char *c) { char *pch = strtok (c,"#"); while (pch != NULL) { ...
1
vote
6answers
272 views

Trying to understand strtok

Consider the following snippet that uses strtok to split the string madddy. char* str = (char*) malloc(sizeof("Madddy")); strcpy(str,"Madddy"); char* tmp = strtok(str,"d"); std::cout<<tmp; do ...

1 2 3