1
vote
1answer
70 views

Parsing comments and strings in source code

I'm designing and implementing a scripting language, and for the "reading" stage I'm taking the time-tested and straightforward approach of splitting the code up into tokens (lexical analysis) ...
10
votes
2answers
524 views

Writing a tokenizer in Python

I want to design a custom tokenizer module in Python that lets users specify what tokenizer(s) to use for the input. For instance, consider the following input: Q: What is a good way to achieve ...
2
votes
3answers
86 views

Tokenization using regexp in Python

I try tokenize a string like "spam bar ds<hai bye>sd baz eggs" into a list ['spam', 'bar', 'ds<hai bye>sd', 'baz', 'eggs'], i.e. like str.split() but preserving whitespace inside < ... ...
1
vote
2answers
150 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
3answers
216 views

Java Read How to read first word then the rest of an input

I'm having trouble figuring out how to read the rest of a input line. I need to token the first word then possibly create the rest of the input line as one whole token public Command getCommand() { ...
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
1answer
77 views

How to add keywords to tokenizer?

I am using generate_token function to tokenise a particular code . The problem is I am not able to add "print" and "input" as keywords. It is returning them as NAME rather than keywords. How do I add ...
0
votes
1answer
94 views

PHP Tokenizer multiline issue

I am using token_get_all to develop a tool. I am stuck in a situation where I have following query in php code $sql = "UPDATE `key_values` SET `Value_Content` = '" . ...
-3
votes
2answers
117 views

Converting a word into a token in python [closed]

I am attempting to convert a word in string form to a token so that it can be tagged by a tagger I have built. Due to the way the program is set up I need to be able to take a string of a single word ...
2
votes
1answer
126 views

Manipulating text file using batch script on windows

I am trying to accomplish the following: I have text file with following entries XXXXXXXX XXXXXXXX XXXXXXXXXXXX DATE TIME AM/PM SIZE FILENAME NEWFILE.ERR XXXX XXX XXXX XXX XXXXXX XXX I want to ...
0
votes
2answers
137 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
179 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
3answers
254 views

Java NLP: Extracting Indicies When Tokenizing Text

When tokenizing a string of text, I need to extract the indexes of the tokenized words. For example, given: "Mary didn't kiss John" I would need something like: [(Mary, 0), (did, 5), (n't, 8), ...
2
votes
1answer
71 views

How many token types does HTML5 tokenization have?

I am learning the HTML parsing. During the tokenization stage, the byte stream is tokenized into tokens. How many token types does the standard HTML tokenization support? Does it include something ...
0
votes
3answers
77 views

Javascript- Arrays with tokens that are a certain value

Let's say I have the array ['dcab', 'feac', 'gwad', 'dnae'] but want to make it so that each 'a' is in its own token, eg ['dc', 'a', 'b', 'fe', 'a', 'c', 'gw', 'a', 'd', 'dn', 'a', 'e'];. How would I ...
0
votes
0answers
72 views

Solutions for reprocessing text before break to terms in Lucene Solr

I am newbie and am playing with Lucene Solr to solve some requirements. Before text go to for index or query, it will be reprocessed, for example : "Hôm nay tôi đi học" =>"Hôm_nay tôi đi_học" , this ...
1
vote
1answer
164 views

Tokenizer in java dealing with spaces and apostorophes

I was wondering if there is any way in Java to tokenize an string by spaces, BUT if there are some words between apostrophes, take it as "one word"... so for example, if I have: This "is a great" ...
1
vote
4answers
193 views

Reading Email Addresses as Tokens

How can I read an email address as a token? I saw that the tokenizer method has a limit of 16 bits of length, well my token is like this: command emailtest@somewhere.com 50 I want to be able to ...
1
vote
1answer
278 views

The proper Solr Tokenizer to tokenize text while preserving special characters

Which tokenizer is appropriate to do this: input: "This-something is something." output: ["] [This] [-] [something] [is] [something] [.] ["] I tried with solr.WordDelimiterFilterFactory, but this ...
0
votes
4answers
389 views

How to tokenize a string without boost?

I am working in C++. I have the following string: 2011-07-01T14:32:39.1846579+02:00 Can someone tell me how can I extract 2011-07-01 14:32 in another string?
0
votes
1answer
304 views

Contextual tokens in ANTLR?

I am trying to integrate a language into NetBeans using ANTLR, and in order to highlight syntax this involves generating tokens for every type of text I want highlighted. Is there a way to create ...
0
votes
1answer
1k views

How can I detect if a string contains a URL in java? [duplicate]

Possible Duplicate: Java-How to detect the presence of URL in a string. Let's assume I have the string: "I like visiting http://www.google.com and www.apple.com" How can I tokenize this ...
6
votes
2answers
617 views

Division/RegExp conflict while tokenizing Javascript

I'm writing a simple javascript tokenizer which detects basic types: Word, Number, String, RegExp, Operator, Comment and Newline. Everything is going fine but I can't understand how to detect if the ...
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 ...
0
votes
0answers
405 views

How to make the tokenizer detect empty spaces while using strtok() [duplicate]

Possible Duplicate: 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 ...
1
vote
4answers
1k views

Ignore parentheses with string tokenizer?

I have an input that looks like: (0 0 0) I would like to ignore the parenthesis and only add the numbers, in this case 0, to an arraylist. I am using scanner to read from a file and this is what I ...
3
votes
1answer
549 views

Why is my string parsed differently via strtok on Windows and Linux?

In my program I'm cutting my char* with strtok. When I'm checking on Windows it's cut like I want, but when I'm doing the same thing on Linux, it's doing it wrong. Example : Windows: my char* ...
30
votes
2answers
12k views

How to get a Token from a Lucene TokenStream?

I'm trying to use Apache Lucene for tokenizing, and I am baffled at the process to obtain Tokens from a TokenStream. The worst part is that I'm looking at the comments in the JavaDocs that address my ...
0
votes
2answers
4k views

how to remove whitespace while scanning text in java

I've implemented several different "scanners" in java, from the Scanner class to simply using String.split("\ss+") but when there are several whitespaces in a row like "the_quick____brown___fox" ...