Tagged Questions
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 ...
1
vote
2answers
153 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 ...
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
4answers
1k views
c++ tokenize std string [duplicate]
Possible Duplicate:
How do I tokenize a string in C++?
Hello I was wondering how I would tokenize a std string with strtok
string line = "hello, world, bye";
char * pch = ...
2
votes
3answers
233 views
C - Determining which delimiter used - strtok()
Let's say I'm using strtok() like this..
char *token = strtok(input, ";-/");
Is there a way to figure out which token actually gets used? For instance, if the inputs was something like:
Hello ...
1
vote
2answers
294 views
including '\' in strtok() in C
Hello I am parsing text and using strtok() to do so. I am not sure how to include a '\' in my delimiters as C sees anything after this char as code.
char delims[] = "\n ...
4
votes
4answers
461 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 ...
0
votes
3answers
200 views
Difference between *str and atoi(str)
I was tokenizing, and used strtok on a text file (which has been read into an array 'store') with the delimiter '='
so there was a statement in the file : TCP.port = 180
And I did:
str = ...
1
vote
2answers
2k views
Nested strtok function problem in C
I have a string like this:
a;b;c;d;e
f;g;h;i;j
1;2;3;4;5
and i want to parse it element by element. I used nested strtok function but it just splits first line and makes null the token pointer. How ...
1
vote
3answers
2k views
tokenizing a string twice in c with strtok()
I'm using strtok() in c to parse a csv string. First I tokenize it to just find out how many tokens there are so I can allocate a string of the correct size. Then I go through using the same variable ...
-1
votes
1answer
525 views
How to make the tokinezer detect empty spaces while using strtok()
I am designing a c++ program, somewhere in the program i need to detect if there is a blank(empty token) next to the token used know eg.
if(token1==start)
{
token2=strtok(NULL," ");
...
0
votes
1answer
888 views
Tokenize whitespace character(s) in C
I'm trying to tokenize a string with multiple spaces. For example, "yes___no", where the underscores are spaces. Using strtok(string, " ");
But I am getting a seg fault and after debugging I see ...
5
votes
3answers
1k 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 ...
2
votes
5answers
563 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.
...
1
vote
5answers
1k views
Why isn't C++ strtok() working for me?
The program is supposed to receive an input through cin, tokenize it, and then output each one to show me that it worked properly. It did not.
The program compiles with no errors, and takes an input, ...