-2
votes
2answers
61 views

Tokenize text you read from file according to rules

I have an assignment to write a code, in which it should read a text file, then write an output file displaying the frequencies of each parameter in the code, i.e. "integers=2, keywords=13, ...
-2
votes
4answers
67 views

#define f(x1,x2) x1##x2 void main() { int i; int s1,s10,s100,s1000; for(i=1;i<5;i*=10) printf(“%d ”,(f(s,i)=i)); }

Here is a piece of code. But i know this will clearly give an error "si undeclared" . Is there any solution for i is to be replaced with its value while token pasting #define f(x1,x2) x1##x2 void ...
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
152 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
3answers
77 views

Tokenizing user input in C (store in **arg)?

I'm attempting to write a simple shell like interface, that takes in a users input (by char) and stores it via a pointer to a pointer* (exactly how argv works). Here's my code: char input[100]; char ...
0
votes
2answers
194 views

Print middle word in a string. C programming

I need help on code that print out a middle word of string. First Example: Input: My name is Alex Output: either name or is <-- is the middle Second Example: Input: Hello. I Need ...
0
votes
2answers
138 views

Tokenizing string loop memory errors

I'm looping through an array, trying to take each token and insert into another string array (char**) and I'm getting invalid writes from valgrind as well as use of uninitialized value. How would I ...
2
votes
3answers
182 views

Tokenized string of char to ints using atoi

I am trying to take user input: (1 345 44 23) and make it into a tokenized char string then into ints. Surprisingly I could not find much help for what I would think would be a common task. Any ...
0
votes
1answer
101 views

Problems while implementing HTTP 1.0 server

I am trying to implement a simple HTTP server with C that reads a request checks if it is a GET request reads the URL from the request Checks if file is on server and tries to open it I am using ...
0
votes
1answer
125 views

C Dynamically allocated memory in a Tokenizer program getNextToken function

Below is a function for getting the next token in a program that does tokenizing. It currently is working but I'm still not sure if it's correct for what my professor is asking for. If you look in the ...
2
votes
3answers
232 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
3answers
202 views

Split string into tokens - without OS-specific functions [duplicate]

Possible Duplicate: How do I tokenize a string in C++? strtok function is not thread safe. Microsoft has Windows-specific strtok_s and CString::Tokenize safe functions. Is there ...
1
vote
1answer
241 views

referencing pointers to character arrays, a strtok worked example

I am working in C trying to tokenize an array and then store the tokens to a global array of strings. The catch is that i am trying to do this with pointers so I do not have to refrence the index of ...
0
votes
2answers
262 views

Tokenize Strings using Pointers in ANSI C

This is in Ansi C. I am given a string. I am supposed to create a method that returns an array of character pointers that point to the beginning of each word of said string. I am not allowed to use ...
-3
votes
1answer
376 views

tokenize a string in c

How can I tokenize strings like this in c: char str1[] = " property :: content | label "; char str2[] = "property::content"; char str3[] = "content"; [edit] I have tried the folowwing: char str[] ...
0
votes
3answers
826 views

Flex default rule

How do I customize the default action for flex. I found something like <*> but when I run it it says "flex scanner jammed"? Also the . rule only adds a rule so it does not work either. What I want ...
0
votes
4answers
153 views

How to tokenize / split data from .csv files containing days and random numbers in C?

I am trying to tokenize data from c file containing random days and numbers. For example, data: Thursday,60 Tuesday,45 Wednesday,80 Monday,14 Saturday,73 Tuesday,3 Saturday,29 . . . Friday,71 ...
1
vote
2answers
293 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 ...
-2
votes
2answers
266 views

smart tokenizer in c

I have to write a tokenizer in c/c++ such that i have to parse a string of the form char pSignature[] = "work.\\top =>\\p1 =:5:p2=:10:=>interface_ports:=dut"; and populate the pair of \p1 5 ...
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
1answer
197 views

Tokenizing Strings in a File

I have a file which I am tokenizing all the strings in it. So each token gets stored in char *token = (char *) malloc(len + 1); The token gets released before the new one is allocated so I need a way ...
2
votes
2answers
3k views

String tokenizer in c

the following code will break down the string command using space i.e " " and a full stop i.e. "." What if i want to break down command using the occurrence of both the space and full stop (at ...
2
votes
1answer
390 views

Defined C token file for flex?

I want to split a C file into tokens, not for compiling but for analyzing. I feel like this should be pretty straight-forward, and tried looking online for a defined tokens.l (or something similar) ...
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
3answers
4k views

strsep() usage and its alternative

#include <stdio.h> #include <string.h> int main() { char *slogan = "together{kaliya} [namak]"; char *slow_gun = strdup(slogan); char *token = strsep(&slow_gun, "{"); printf ("\n ...
5
votes
2answers
315 views

How to tokenzie (words) classifying punctuation as space

Based on this question which was closed rather quickly: hey guys im trying to create a program to read a users input then break the array into seperate words are my pointers all valid ? Rather than ...
0
votes
3answers
932 views

Regex-based strstr function in C

I needed to find a way to get a pointer to a substring (like strstr, first occurence) to more than one possible needles (patterns) a large string. C's standard strstr() does only support one needle, I ...
1
vote
1answer
2k views

Parsing a char array in c

I am trying to parse a c char array. It is for class so I have to use c. I am having problems splitting the tokens I need to be able to accept two different parameters in the following formats: ...
0
votes
5answers
2k views

Fast String tokenization in C/C++

I'm working on a C/C++ app (in Visual Studio 2010) where I need to tokenize a comma delimited string and I would like this to be as fast as possible. Currently I'm using strtok_s. I ran some tests of ...
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 ...
0
votes
1answer
882 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 ...
3
votes
3answers
601 views

C Tokenizer - How does it work?

How does this work? I know to use it you pass in: start: string (e.g. "Item 1, Item 2, Item 3") delim: delimiter string (e.g. ",") tok: reference to a string which will hold the token nextpos ...
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. ...
4
votes
4answers
271 views

Lexers/tokenizers and character sets

When constructing a lexer/tokenizer is it a mistake to rely on functions(in C) such as isdigit/isalpha/... ? They are dependent on locale as far as I know. Should I pick a character set and ...
8
votes
4answers
285 views

Is there anything like PPI or Perl::Critic for C?

PPI and Perl::Critic allow programmers to detect certain things in the syntax of their Perl programs. Is there anything like it that will tokenize/parse C and give you a chance to write a script to ...
1
vote
4answers
2k views

Tokenize from a textfile reading into an array in C

How do you tokenize when you read from a file in C? textfile: PES 2009;Konami;DVD 3;500.25; 6 Assasins Creed;Ubisoft;DVD;598.25; 3 Inferno;EA;DVD 2;650.25; 7 char *tokenPtr; fileT = ...
2
votes
6answers
950 views

The intricacy of a string tokenization function in C

For brushing up my C, I'm writing some useful library code. When it came to reading text files, it's always useful to have a convenient tokenization function that does most of the heavy lifting ...
0
votes
2answers
2k views

C Tokenizer (and it returns empty too when fields are missing. yay!)

See also: Is this a good substr() for C? strtok() and friends skip over empty fields, and I do not know how to tell it not to skip but rather return empty in such cases. Similar behavior from most ...
2
votes
3answers
333 views

Smart variadic expansion based on format string

I have a daemon that reads a configuration file in order to know where to write something. In the configuration file, a line like this exists: output = /tmp/foo/%d/%s/output Or, it may look like ...
4
votes
5answers
1k views

How do I parse a token from a string in C?

How do i parse tokens from an input string. For example: char *aString = "Hello world". I want the output to be: "Hello" "world"
3
votes
7answers
18k views

Tokenizing strings in c

I have been trying to tokenize a string using SPACE as delimiter but it doesn't work. Does any one have suggestion on why it doesn't work? Edit: tokenizing using: strtok(string, " "); the code is ...