Check for existence of token in strtok
up vote
0
down vote
favorite
I need to modify some C code that currently reads two columns of data from an ascii file, so that it can check to see if a third column is provided and if a third column is found, will read the third column.
The relevant snippet of code is currently:
struct forestListElement * forestList = malloc(nTrees*sizeof(struct forestListElement));
// skip first line
fgets(line,800,file);
cnt = 0;
while( fgets(line,sizeof(line),file) !=NULL) {
pch = strtok(line," ");
forestList[cnt].treeRootId =atoll(pch);
pch = strtok(NULL," ");
forestList[cnt].forestId = atoll(pch);
cnt++;
}
This snippet is looping over a file that currently has two columns of data (two IDs in long format). But I would like to modify the code so that after reading the first two columns it checks to see if a third column exists and, if it does, read a weight from that column. If the third column does not exist, set the weight to 1. I would like to modify the code to something like:
struct forestListElement * forestList = malloc(nTrees*sizeof(struct forestListElement));
// skip first line
fgets(line,800,file);
cnt = 0;
while( fgets(line,sizeof(line),file) !=NULL) {
pch = strtok(line," ");
forestList[cnt].treeRootId =atoll(pch);
pch = strtok(NULL," ");
forestList[cnt].forestId = atoll(pch);
forestList[cnt].forestWeight = 1.0;
if(<check if third column exists>){ \ <-- what do I put here?
pch = strtok(NULL," ");
forestList[cnt].forestWeight = atof(pch);
}
cnt++;
}
What do I need to include in the if-statement?
Apologies if this is a simple task, but I am not familiar with C and am struggling to know what to search for on Google!
Thanks.
c io token strtok
add a comment |
up vote
0
down vote
favorite
I need to modify some C code that currently reads two columns of data from an ascii file, so that it can check to see if a third column is provided and if a third column is found, will read the third column.
The relevant snippet of code is currently:
struct forestListElement * forestList = malloc(nTrees*sizeof(struct forestListElement));
// skip first line
fgets(line,800,file);
cnt = 0;
while( fgets(line,sizeof(line),file) !=NULL) {
pch = strtok(line," ");
forestList[cnt].treeRootId =atoll(pch);
pch = strtok(NULL," ");
forestList[cnt].forestId = atoll(pch);
cnt++;
}
This snippet is looping over a file that currently has two columns of data (two IDs in long format). But I would like to modify the code so that after reading the first two columns it checks to see if a third column exists and, if it does, read a weight from that column. If the third column does not exist, set the weight to 1. I would like to modify the code to something like:
struct forestListElement * forestList = malloc(nTrees*sizeof(struct forestListElement));
// skip first line
fgets(line,800,file);
cnt = 0;
while( fgets(line,sizeof(line),file) !=NULL) {
pch = strtok(line," ");
forestList[cnt].treeRootId =atoll(pch);
pch = strtok(NULL," ");
forestList[cnt].forestId = atoll(pch);
forestList[cnt].forestWeight = 1.0;
if(<check if third column exists>){ \ <-- what do I put here?
pch = strtok(NULL," ");
forestList[cnt].forestWeight = atof(pch);
}
cnt++;
}
What do I need to include in the if-statement?
Apologies if this is a simple task, but I am not familiar with C and am struggling to know what to search for on Google!
Thanks.
c io token strtok
1
Did you read the documentation forstrtok
? What does it return? And what does it return if the next token isn't found?
– Ken White
Nov 22 at 4:13
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I need to modify some C code that currently reads two columns of data from an ascii file, so that it can check to see if a third column is provided and if a third column is found, will read the third column.
The relevant snippet of code is currently:
struct forestListElement * forestList = malloc(nTrees*sizeof(struct forestListElement));
// skip first line
fgets(line,800,file);
cnt = 0;
while( fgets(line,sizeof(line),file) !=NULL) {
pch = strtok(line," ");
forestList[cnt].treeRootId =atoll(pch);
pch = strtok(NULL," ");
forestList[cnt].forestId = atoll(pch);
cnt++;
}
This snippet is looping over a file that currently has two columns of data (two IDs in long format). But I would like to modify the code so that after reading the first two columns it checks to see if a third column exists and, if it does, read a weight from that column. If the third column does not exist, set the weight to 1. I would like to modify the code to something like:
struct forestListElement * forestList = malloc(nTrees*sizeof(struct forestListElement));
// skip first line
fgets(line,800,file);
cnt = 0;
while( fgets(line,sizeof(line),file) !=NULL) {
pch = strtok(line," ");
forestList[cnt].treeRootId =atoll(pch);
pch = strtok(NULL," ");
forestList[cnt].forestId = atoll(pch);
forestList[cnt].forestWeight = 1.0;
if(<check if third column exists>){ \ <-- what do I put here?
pch = strtok(NULL," ");
forestList[cnt].forestWeight = atof(pch);
}
cnt++;
}
What do I need to include in the if-statement?
Apologies if this is a simple task, but I am not familiar with C and am struggling to know what to search for on Google!
Thanks.
c io token strtok
I need to modify some C code that currently reads two columns of data from an ascii file, so that it can check to see if a third column is provided and if a third column is found, will read the third column.
The relevant snippet of code is currently:
struct forestListElement * forestList = malloc(nTrees*sizeof(struct forestListElement));
// skip first line
fgets(line,800,file);
cnt = 0;
while( fgets(line,sizeof(line),file) !=NULL) {
pch = strtok(line," ");
forestList[cnt].treeRootId =atoll(pch);
pch = strtok(NULL," ");
forestList[cnt].forestId = atoll(pch);
cnt++;
}
This snippet is looping over a file that currently has two columns of data (two IDs in long format). But I would like to modify the code so that after reading the first two columns it checks to see if a third column exists and, if it does, read a weight from that column. If the third column does not exist, set the weight to 1. I would like to modify the code to something like:
struct forestListElement * forestList = malloc(nTrees*sizeof(struct forestListElement));
// skip first line
fgets(line,800,file);
cnt = 0;
while( fgets(line,sizeof(line),file) !=NULL) {
pch = strtok(line," ");
forestList[cnt].treeRootId =atoll(pch);
pch = strtok(NULL," ");
forestList[cnt].forestId = atoll(pch);
forestList[cnt].forestWeight = 1.0;
if(<check if third column exists>){ \ <-- what do I put here?
pch = strtok(NULL," ");
forestList[cnt].forestWeight = atof(pch);
}
cnt++;
}
What do I need to include in the if-statement?
Apologies if this is a simple task, but I am not familiar with C and am struggling to know what to search for on Google!
Thanks.
c io token strtok
c io token strtok
asked Nov 22 at 2:50
aim
190218
190218
1
Did you read the documentation forstrtok
? What does it return? And what does it return if the next token isn't found?
– Ken White
Nov 22 at 4:13
add a comment |
1
Did you read the documentation forstrtok
? What does it return? And what does it return if the next token isn't found?
– Ken White
Nov 22 at 4:13
1
1
Did you read the documentation for
strtok
? What does it return? And what does it return if the next token isn't found?– Ken White
Nov 22 at 4:13
Did you read the documentation for
strtok
? What does it return? And what does it return if the next token isn't found?– Ken White
Nov 22 at 4:13
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53423201%2fcheck-for-existence-of-token-in-strtok%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Did you read the documentation for
strtok
? What does it return? And what does it return if the next token isn't found?– Ken White
Nov 22 at 4:13