Tokenizing is the act of splitting a string into discrete elements called tokens.

learn more… | top users | synonyms (3)

0
votes
1answer
268 views

Lucene: How to use StandardTokenizer in conjunction with my own Tokenizer

I'm building a Tokenizer that will take text and split at white spaces and add in sentence and paragraph tokens (here's a question related to that if you're interested) but in addition to running ...
0
votes
3answers
110 views

errors with a file tokenizer

So I wrote this program to tokenize a file with code in it and separate each identifier, keyword, number, and symbol into a number token. The problem I am having is that while it will assign the first ...
3
votes
3answers
235 views

Regular expression for a fake programming language

I have an assignment to create a lexical analyzer that that translates the language into a series of tokens. I'm using java.util.regex to go through a string finding the different tokens and i put ...
0
votes
2answers
228 views

Parsing strings with quote characters inside fields

Suppose I want to parse the file $ cat toParse.txt 1 2 3 4 5 1 "2 3" 4 5 1 2" 3 " 4 5 The first two lines are easy to parse: Text::CSV can handle it. For instance, I tried: use strict; use ...
2
votes
1answer
113 views

SQL: how to separate combined row into individual rows

I have a database table like this: id | check_number | amount 1 | 1001]1002]1003 | 200]300]100 2 | 2001]2002 | 500]1000 3 | 3002]3004]3005]3007 | ...
-1
votes
3answers
245 views

Splitting a string in arguments (using sed/awk)

Environment: KORN Shell (KSH) I want to separate the string below: -ssRMDFXXRT -rtETL -ltDAILY -sD20120203 -lfRS -UP"EffTimeStamp=20110203-210000#InputCtxNm=Forigen Exchange Today#RunType=EOD" ...
0
votes
2answers
118 views

Unix Export Variables from Tokenised String

Say I have a string: 'EffTimeStamp="20110203-210000"#InputCtxNm="Forigen Exchange Today"#RunType="EOD"#Age="90" Using: echo 'EffTimeStamp="20110203-210000"#InputCtxNm="Forigen Exchange ...
0
votes
1answer
202 views

How to index multiple words as a single tokens in hibernate search?

I am using hibernate search with solr in my project and one of my use case would require data to be tokenized and indexed as follows: One of my database field is a varchar and has values : New Road, ...
3
votes
3answers
770 views

How to implement XSLT tokenize function?

It seems like EXSLT tokenize function is not available with PHP XSLTProcessor (XSLT 1.0). I tried to implement it in pure XSL but I can't make it work : <xsl:stylesheet version="1.0" ...
0
votes
2answers
225 views

SQL hashtags regex to table

I have this table: p_id name skills 1 Sam #IT #communication #administration 2 Alex #French #Trainer i want an sql query to output this ID p_fid ...
13
votes
1answer
527 views

How do I parse basic arithmetic (eg “5+5”) using a simple recursive descent parser in C++?

This has been on my mind for a while. I'm intrigued by recursive descent parsers, and would like to know how to implement one. What I want is a simple parser that will understand simple arithmetic ...
1
vote
1answer
250 views

Python tokenize: token position

Python's tokenize returns all the found tokens' position as two tuples of (startRow, startCol) and (endRow, endCol). Is there a way to return the positions as the offsets from the beginning of the ...
0
votes
1answer
125 views

Tokenization of text with jQuery

I have a neat challenge and can't complete it with myself! To everyone who don't know what tokenization is, see here: http://en.wikipedia.org/wiki/Tokenization Goal Process text word-for-word and ...
1
vote
3answers
209 views

Why is this function not breaking up this input string?

I'm trying to break up a string into "symbols" with C++ for further work. I haven't written anything in C++ for a long while, so forgive me if there is something inherently wrong with this code. The ...
0
votes
2answers
287 views

Tokenize a source code

Is there any library available that can tokenize source code written in different programming languages (java/C/C++)? (can possible identify part of it like starting and ending of a function, which ...
0
votes
1answer
517 views

XSLT tokenize - capturing the separators

here is a piece of code in XSL which tokenizes a text into fragments separated by interpunction and similar characters. I'd like to ask if there is a possibility to somehow capture the strings by ...
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 ...
1
vote
2answers
136 views

How does bison “work”: how is it used?

Say I have this C program. #include <stdio.h> int main(void) { int monday = 1; int tuesday = 2; if(monday == tuesday) { fprintf("I should quit my day job"); } return 1; } What ...
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 ...
0
votes
1answer
286 views

c++ Arithmetic word number conversion, please need advice

Thanks Joachim, but i can't get it to compile, i think it might be the way i set it up, so i removed the for loop like you said, and incorporated the functions in my calculator.cpp file. So when i ...
1
vote
0answers
302 views

Custom tokenizer solr only is invoked at the first

I created a custom tokenizer, it seem work fine by checking with admin/analysis.jsp and with system.out log. However when I perform querying in the field which use this custom tokenizer, I saw that ...
2
votes
1answer
351 views

How to prevent Facet Terms from tokenizing

I am using Facet Terms to get all the unique values and their count for a field. And I am getting wrong results. term: web Count: 1191979 term: misc Count: 1191979 term: passwd Count: 1191979 ...
2
votes
0answers
452 views

Matching all tokens in a Multivalued Field in Solr

I'm trying an approach to resolve a search requirement by tokenizing a serial string into individual terms inside of a multivalued field. basically, each document may contain multiple values for ...
0
votes
2answers
124 views

In GWT, how can I serialize/unserialize a Place using JSON in its tokenizer?

I would like to create a standard Tokenizer for my places in GWT. To do so, I would like to use the json format. Something like this : public String getToken(T place) { return ...
0
votes
1answer
259 views

Java - split an input stream with every 4th space

I want to tokenize an inputstream with every 4th space. So that whenever I call something like next(), it returns me the 4 words from the line... if 4 words are not there in the input stream as it has ...
1
vote
5answers
2k views

String tokenization in java (LARGE text)

I have this large text (read LARGE). I need to tokenize every word, delimit on every non-letter. I used StringTokenizer to read one word at a time. However, as I was researching how to write the ...
0
votes
1answer
64 views

Creating an Android View with pre-loaded set phrases + new text

I am trying to build an Android input control which allows the user to construct a paragraph of text by bolting together different set phrases, and subsequently editing them. For instance, the ...
2
votes
1answer
648 views

How to use Lucene library to extract n-grams?

I am having a rough time trying to wrap my head around the Lucene library. This is what I have so far: public void shingleMe() { try { StandardAnalyzer analyzer = new ...
0
votes
2answers
84 views

Delimiting Scanner input from file

I have a program that reads input from a file. I am trying to delimit input to only return tokens after a comma. But it doesn't seem to work. Here's my code so far: package usegradebook; import ...
1
vote
1answer
926 views

Tokenizing large (>70MB) TXT file using Python NLTK. Concatenation & write data to stream errors

First of all, I am new to python/nltk so my apologies if the question is too basic. I have a large file that I am trying to tokenize; I get memory errors. One solution I've read about is to read ...
-1
votes
1answer
108 views

Loading a file into main memory

I have this text file that contains a list of words and a bunch of scores associated with each of them. I want to read the words off the file and the words and use them in my project. The code is in ...
1
vote
2answers
401 views

regex as tokenizer - string beginning with delimiter

sregex_token_iterator works almost perfectly as a tokenizer when the index of the submatch is specified to be -1. But unfortunately it doesn't work well with strings that begin with delimiters e.g: ...
0
votes
2answers
318 views

Tokenizing and parsing a text file (edit decision list ASCII text file) Objective C

I'm new to programming and stackoverflow and have decided to start by learning objective c. In at the deep end, I know. I am stuck trying to work out the best way to parse an edl file. It is ...
1
vote
2answers
969 views

Using StreamTokenizer to read a structured file

If I have a file with some structure to it: type 2 0 0 name 100 100 name 1 1 2 name name How can I use a StreamTokenizer to process this file? Is the only way the procedural approach? i.e. ...
0
votes
1answer
356 views

how to tokenize a c++ source code file (convert to sequence of tokens)? [duplicate]

Possible Duplicate: How to create a plagiarism detector of c++ files a simple lexer.cpp to convert a simle c++ file to a sequence of tokens hi i have a project "plagiarism detector for ...
1
vote
1answer
251 views

XSLT tokenize a string that's distributed across child elements

I have the feeling there's an obvious solution out there, but I can't think of it. Using XSLT 2.0 I want to tokenize a string that's distributed across child elements, so it's something like ...
1
vote
3answers
130 views

Finding three parts of string in Python using regex

I have three a string that is the concatenation of three components: one word from list 1 (includes an empty string) one word from list 2 one word from list 3 (includes an empty string) Lists 1, 2 ...
0
votes
1answer
116 views

Java StringTokenizer odd behavior

I'm trying to extract only lowercase alphanumerical characters from a document with this: String delim = "abcdefghijklmnopqrstuvwxyz0123456789"; StringTokenizer strtok = new StringTokenizer(str, ...
5
votes
3answers
550 views

Basic NLP in CoffeeScript or JavaScript — Punkt tokenizaton, simple trained Bayes models — where to start?

My current web-app project calls for a little NLP: Tokenizing text into sentences, via Punkt and similar; Breaking down the longer sentences by subordinate clause (often it's on commas except when ...
0
votes
1answer
225 views

Amzi Prolog Tokenize

I would want to read a file and store the words in every line as a list. This is my code: main :- open('sample.txt', read, Str), read_file(Str,Lines), close(Str), write(Lines), nl. ...
2
votes
1answer
118 views

How to solve no input in StreamTokenizer

I have the following lines of code : public static void main(String[] args) { InputStreamReader inputStreamReader = new InputStreamReader(System.in); StreamTokenizer t = new ...
0
votes
3answers
154 views

changing every non letter character to \n in a file using unix utilities

i was watching a tutorial about using unix utilities the guy was using it on a MAC i had a windows laptop so i downloaded Gnuwin32 Package then came a part where i want to replace any non letter ...
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
2answers
165 views

Convert normal, infix expression to arraylist of tokens

I want to convert something like 233 + 4 *(4-8) +5 to [233,+,4,*,(,4,-,8,),+,5] Where the latter is an array of Strings. So far I have: String s = "233 + 4 *(4-8) +5"; for(int i = 0; ...
0
votes
0answers
63 views

How to tokenize quoted text keeping info about position of tokens in original string?

Problem is that I get string like: str = 'one two "three and four" five six' What I would like to have is ability to firstly tokenize this string. This can be done fairly easy with ...
0
votes
6answers
3k views

extract numbers from string c++

I have a string, which looks like this: foo $RESULT :(0.2374742, 0.267722, ...up to a million more) $STATES :{1, 3, 5, ...} foo so somewhere in the string are results and directly after them are ...
1
vote
0answers
245 views

Solr Arabic search not working unless words are neighbors

So far my solr deployment for a set of Arabic data I have is working great. The stemming and normalization are all quite fantastic. The problem now is that the arabic search does not work UNLESS the ...
0
votes
2answers
105 views

Tokenizing Ellipsis in a Programming Language to Avoid Floating Points

I am designing a language where I want to use .. to define an integer range. The problem is that 0..10 is tokenized as the floats 0. and .10. How do I allow support this syntax with flex? Is it is ...
0
votes
1answer
244 views

read file and tokenize data to compare to input in C++

can you help me with this.. what i'm trying to accomplish is that when the user inputs his/her username and password, my program will then open a file which is the storage of the users information ...
3
votes
5answers
9k views

String tokenizer in Javascript?

I need a tokenizer that given a string with arbitrary white-space among words will create an array of words without empty sub-strings. For example, given a string: " I dont know what you mean by ...

1 4 5 6 7 8 14