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

-1
votes
4answers
46 views

Why isn't strtok correctly separating tokens?

I'm trying to adapt the following working code: http://www.cplusplus.com/reference/cstring/strtok/ as follows: #include <stdio.h> #include <string.h> int main (int argc, const char * ...
1
vote
2answers
36 views

C program to find individual words in a string using strtok

I am writing a program where I use strtok in order to find each word in a string that I type into the command line, in my example, my code is called command.c so when I type: ./command.out "Hi, ...
0
votes
4answers
92 views

String formatting, strtok issues

I'm working on a program that separates words in a string, and then prints each word on a different line. I am having some difficulty with the output. For ex. "This is a string" prints ""this ...
0
votes
1answer
72 views

Subtraction in a while loop. C++

I have this code snippet. I need to subtract numbers from a byte stream (which is already being tokenized by a ,). The problem is, when I do sub = sub - atoi(pchNew) it gives the sum of all the ...
0
votes
5answers
82 views

strtok() issue: If tokens are delimited by delimiters,why is last token between a delimiter and the null '\0'?

In the following program,strtok() works as expected in the major part but I just can't comprehend the reason behind one finding.I have read about strtok() that(Source): To determine the beginning and ...
1
vote
2answers
45 views

Read from a file and tokenise input C

I'm having trouble with a piece of coding I'm working on. It involves linked lists and certain annoying pointers. Here is some sample code: PersonType *person; FILE *c; c = fopen("file.csv", "r"); ...
-1
votes
2answers
66 views

strtok on a local variable in C [closed]

I encountered an interesting problem in C, when calling an external method from main that tries to strtok a local (main) string that is passed to it by reference. If I strtok the string in main, it ...
0
votes
3answers
40 views

Parsing command line for execve()

I'm writing a program where it takes a command line then parse it ,in order to print an Array of strings of each argv in the input . The code give me a segmentation fault (core dumped) ! #include ...
1
vote
2answers
36 views

Error trying to use 'strtok' for a string

#include <iostream> #include <string.h> using namespace std; int main() { char *tok; string s = "Ana and Maria are dancing."; tok = strtok(s.c_str(), " "); while(tok != NULL) { cout ...
-1
votes
2answers
52 views

Why does this use of strtok() cause segmentation fault?

I am trying to get ALL tokens in a string using strtok() and onvert them to integers. After getting one token, trying to pull another promptly segfaults - how do I tell the system that this is not a ...
1
vote
4answers
63 views

Exiting While Loop immediately after the last word in a line

I am reading the following line from a file using fgets: #C one two three four five six seven eight nine ten eleven Each word (except #C) is a column heading. So there are eleven columns in my file. ...
1
vote
4answers
64 views

C strtok and strcpy

I have a text file, similar to the following: Name1: ID1 Name2: ID2 Name3: ID3 I am trying to parse it to get Name1 Name2 Name3 stored in a variable. I wrote the following function: /* * ...
0
votes
2answers
78 views

C : Using strtok() to parse text file

I've been trying to make a program that parses a text file and feeds 6 pieces of information into an array of objects. The problem for me is that I'm having issues figuring out how to process the text ...
0
votes
0answers
49 views

Not understanding results from strtok()

I'm working on parsing a file and have been attempting to use the strtok() function to try and help with the process. Imagine this excerpt from a text file: .text main: lw $a0, array ...
1
vote
1answer
36 views

function crashes when reading in a csv file

I have coded a function to read in a csv file but half way through the parsing the program crashes giving me errors in strcat.The errors are at the third field which is phone.I can't spot the error I ...
1
vote
3answers
51 views

How can I fix this strtok() call

I have a problem with strtok() - it does not return the input as expected. void parse_input(const char *input,unsigned char *ctext, int mlen){ char * str = strdup(input); char * pch = ...
0
votes
2answers
65 views

strtok not tokenizing only on specified delimiters

So I'm new to C and am teaching myself string handling. My issue so far as I can tell is that my function that tokenizes sp? the input string of numbers is not only cleaving on the spaces. For ...
0
votes
3answers
63 views

Problems using strtok() and stringstream

I've been fiddling with this for a while now, and all it returns is first two numbers in the 'save.rp' file on separate lines, int characterPosition [2] = {0,0}; string convToStr(char *ch) { ...
0
votes
4answers
111 views

C - How to split a string by a substring [duplicate]

this might be some basic question, but I really can't find an answer: I need to split a string that has two numbers, into two strings in C. Example: 1->2 into 1 and 2 I'm using strtok, but it ...
2
votes
1answer
64 views

segmentation fault in this little piece of code?

char *commandstrings[MAXARGS]; commandstr = strtok(line,"|"); int i = 0; while(commandstr != NULL){ commandstrings[i] = commandstr; printf("%s \n",commandstr); ...
-1
votes
2answers
57 views

Break up a string into separate parts

//PROBLEM NUMBER 2 //how to store word from pointer2char into wordList array? New_sentence is an array holding a string (sentence inputted from user). pointers2char is a pointer array that ...
3
votes
2answers
68 views

strtok and free

What's the problem of doing this: void *educator_func(void *param) { char *lineE = (char *) malloc (1024); size_t lenE = 1024; ssize_t readE; FILE * fpE; fpE = fopen(file, "r"); if (fpE == NULL) { ...
0
votes
3answers
64 views

strtok return string?

just having a little issue with strtok and strcmp. I'm trying to compare the input of a user via fgets to some predetermined string: char *token[100]; fgets(s, sizeof(s), stdin) token[0] = ...
-1
votes
2answers
46 views

C: correct usage of strtok_r

How can i use strtok_r instead of strtok to do this: char *pchE = strtok(NULL, " "); ? EDIT: now i'm trying to use strtok_r properly.. but sometimes i get problems with the strtol i have a thread ...
0
votes
0answers
72 views

strtok: Where is the empty line in my output coming from? [closed]

I have the following code: char* pch; int i=0; char* str = buffer+2; // str now contains: num a b c x y z pch = strtok (str, " "); while(pch!=NULL){ cout<<pch<<endl; pch = strtok ...
1
vote
3answers
123 views

Parsing string with strtok()

I'm trying to parse this line Completion_Time_Stamp = 2013-04-04@12:10:22(Eastern Daylight Time) and put the name in one variable and value in another token[0] = strtok(buf, " = "); // first ...
0
votes
1answer
41 views

Using fwrite() to write from pointers

This question was asked quite a lot, but specifically in regards to structs containing pointers, and never helped my situation fully. What I'm trying to do, is strtok() the first and only command line ...
0
votes
5answers
94 views

Ignoring spaces in a string unless it's in quotes

char *args[32]; char **next = args; char *temp = NULL; char *quotes = NULL; temp = strtok(line, " \n&"); while (temp != NULL) { if (strncmp(temp, "\"", 1) == 0) { //int i = ...
0
votes
1answer
51 views

tokenize two times a csv file

I'm using strtok() in C to parse a csv string. My example string is: str= "name1 secondname1 cin,name2 secondname2 cin" I first use strtok with the delimiter "," and second I delimit the string ...
0
votes
3answers
65 views

Seg fault with strtok

Hey guys I'm getting a seg fault with strtok, just need a little bit of help! char s[1024]; char *token[2]; while(fgets(s, sizeof(s), fp) != NULL) // Read line from file fp until end { token[0] = ...
0
votes
2answers
82 views

strtok in C and passing arguments

I've got a function whose purpose is to recieve an array of numbers separated by spaces, and one number at a time, assign them to a variable of a struct like this: typedef struct coo { int x; ...
0
votes
3answers
87 views

C strtok, enter by enter

I want to read the data: sample text opp I see this: sample (enter) text (enter) opp (enter) However, my code does not work well. #include <stdio.h> #include <stdlib.h> int main(){ ...
1
vote
3answers
145 views

Splitting a char array by delimeter, then saving the result?

I need to be able to parse the following two strings in my program: cat myfile || sort more myfile || grep DeKalb The string is being saved in char buffer[1024]. What I need to end up with is a ...
0
votes
0answers
35 views

fgets and strtok crashes with Segmentation error after several runs

I have a csv file that I read to get the IP address that I need to do a lookup. I decided to use fgets and strtok to get the IP address in each line of the csv file. The IP address is the 4th token in ...
1
vote
2answers
79 views

Strtok returning extra data at end of line

I have been messing with this code for hours upon hours and am looking for some advice. I am using strtok to get words from a string, but I keep getting extra data at the end of each line. I have the ...
1
vote
1answer
96 views

(C) using strtok() for space-delimited substrings?

C noobie. I'm trying to split a string 'files' into substrings delimited by spaces and put all of the new substrings into a 2d array, 'file_array'. The error with the current code: The 2d array is ...
-1
votes
3answers
111 views

strtok() not functioning correctly [closed]

I am working in Linux. I need to input "ls -l" in the variable input. But it just does not get tokenized correctly! What am I doing wrong? Nothing is printed after arg2: cin>>input; ...
2
votes
6answers
146 views

C - Unexpected Segmentation Fault on strtok(…)

I am using strtok(...) of the library and it appears to be working fine until the end condition, where it results in a segmentation fault and program crash. The API claims that strtok(...) will ...
0
votes
1answer
58 views

C++: strtok strange behaviour in last element of the line of input file?

I am reading from a file (sample shown below), line by line, and for each line I use strtok to get the elements which are divided by tabs (as shown in the code). Now, when I create the file with the ...
0
votes
0answers
45 views

Problems with Parsing

How do I parse an html/txt file using only strtok and/or strsep? I'm trying that saves the text parts of a wikipedia article to a .txt file. The first part of my code allows me to download the ...
-7
votes
1answer
65 views

What function to use? [closed]

I have used strtok_r to remove symbols in the html string. But how can I remove html tags? I need to do this in C ? Thanks! What function in C can be used to remove those tags and html elements? I ...
1
vote
2answers
154 views

Tokenizing input from getline

I'm trying to use getline() to take input from the keyboard, store it in a string, tokenize it, then print the tokens. When I run this, I get a Segmentation Fault error on the the last iteration (the ...
0
votes
3answers
230 views

C String Arrays strtok()

Hi I am very new to C and this whole pointer thing with chars is extremely confusing to me. I am having the hardest time doing something very simple. I want to break up a string (request) with the ...
0
votes
4answers
205 views

reading multiple variable types from single line in file C

Alright I've been at this all day and can't for the life of me get this down, maybe you chaps can help. I have a file that reads as follows 1301,105515018,"Boatswain","Michael R.",ABC, 123,="R01" ...
2
votes
1answer
47 views

strtok and strncat error

I want to add string "ay" to each word by using both strtok and strncat. But there seemed to be a conflict somewhere that I cannot find. It only gives me the first word "Computeray" for an output. ...
1
vote
2answers
97 views

How do I parse strings with the newline character in C?

I'm writing a shell and I'm using getline() with stdin from the keyboard to take commands. I'm having trouble tokenizing the inputs though. I tried using \n as a delimiter in the strtok() function, ...
0
votes
0answers
49 views

Problems after iconv with strlen and strtok

I have written a code to convert an input UCS-2LE file to normal 8 bit ISO-8859-1 text. After I convert it, I am splitting the entire text into words using strtok function. Now I am applying strlen on ...
2
votes
1answer
147 views

Tokenizing a string in C using strtok()

I'm trying to write a function that takes an HTTP request and extracts a small amount of the data. My function looks like this: char* handle_request(char * req) { char * ftoken; // this will be a ...
2
votes
1answer
115 views

Using strcpy with std::vector

I have some trouble using strcpy with a vector of instances of my own class. Here's the class: class elemente { char name[5]; short val; bool red; }; So, I made a vector from ...
3
votes
2answers
192 views

Reading and parsing lines from a file with fgets and strtok

I'm having trouble with a fairly basic bit of code. I need to read each line from the file shown below, split it up into the 3 parts with strtok, and store each part into an array. The arrays for ...

1 2 3 4 5 6