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

learn more… | top users | synonyms (3)

0
votes
2answers
139 views

Standard analyzer that doesn't tokenize some words/patterns

So, if suppose there is a line like this: > Mar 14 20:22:41 subdomain.mydomain.colo postfix/smtpd[16862]: NOQUEUE: > reject: RCPT from unknown[1.2.3.4]: 450 4.7.1 Client host rejected: > ...
1
vote
1answer
31 views

Using syntax-table information in elisp for tokenization

I would like to use elisp to tokenize the following: variable := "The symbol \" delimits strings"; (* Comments go here *) as: <variable> <:=> <The symbol \" delimits strings> ...
2
votes
2answers
68 views

How can I further profile and optimize this string tokenization function?

Feel free to skip my long-winded explanation if looking at the source code is easier! So I've written a function to tokenize strings of text. In the simplest case, it takes a string like It's a ...
1
vote
2answers
51 views

How can I tokenize two different strings with same stringstream object?

How can I tokenize two different strings with same stringstream object? I was trying the following code but it doesn't work: using namespace std; void check() { stringstream s( "This is a ...
0
votes
0answers
37 views

Is it possible to change the delimiter halfway through the tokenizing process?

This is a follow-up question of Scanner Vs StringTokenizer Vs String.split() In the accepted answer, Neil Coffey says something about changing the the delimiter halfway through depending on a ...
4
votes
2answers
128 views

Java/clojure: Multiple character delimiter, and keep the delimiter

I'm working on a project in clojure, which can interop with any java classes, so the answer to my question could be for either java or clojure. Basically I need to be able to split a string into ...
2
votes
3answers
87 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
votes
1answer
136 views

componentsSeparatedByString: does not split string which contains all the characters in the separator

I have an issue with componentsSeparatedByString: giving me weird results. With this code: CCLOG(@" Found string %@",string); tokens = [string componentsSeparatedByString:@"[,]"]; CCLOG(@" ...
0
votes
1answer
33 views

How do I customize PKTokenizer in ParseKit to tokenize substrings?

Say I want to parse substrings with ParseKit, like the prefix of a word. So for example I want to parse 'preview' and 'review'. So my grammar might be: @start = prefix 'view'; prefix = 'pre' | 're'; ...
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
3answers
230 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
1answer
71 views

Tokenize string by each character sequence of each word

I feel like this could have been asked, but titled differently therefore I cannot find a exact duplicate. Whats the easiest way to tokenize a string so that each word is tokenized, as well as each ...
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
0answers
60 views

InputMismatch in Scanner.nextInt()

I am using this method to read in a collection of ints and strings then converting the strings to numbers using the switch statement(as stated by my lecturer) and save it back into an array for ...
2
votes
2answers
181 views

Perl split() without removing delimiter

I'm trying to parse c functions declarations. I want to get arrays of tokens from string. so i use split: $function = "int func1( int * , const float, const char[])" print ...
0
votes
4answers
144 views

How do I tokenize a string sentence in NLTK?

I am using nltk, so I want to create my own custom texts just like the default ones on nltk.books. However, I've just got up to the method like my_text = ['This', 'is', 'my', 'text'] I'd like to ...
0
votes
1answer
47 views

Grabbing text inbetween specific HTML tags using Java switch statement

I'm trying to grab the text between <AU></AU> tags in a file, and then print out the results on a new line. I need to do this with a switch statements and a helper class called ...
1
vote
4answers
66 views

Should I tokenize line breaks to separate statements or worry about this on the parser?

I built a basic tokenizer in PHP, right now it parses something similar to javascript albeit semicolons are not needed to separate statements. a = 1 b = a + 1 echo b T_IDENTIFIER a T_EQUAL = ...
0
votes
3answers
181 views

Grab word and character counts in string

I'm trying to write a super-efficient method that operates in two "modes" (WORD and CHARACTER) that accepts a String and tells me the number of words (separated by 1+ whitespaces) or characters ...
0
votes
2answers
145 views

Optimization Of Code With Runtime of 150Hours [closed]

I've been working on a project where I am importing a large document of documents and tokenizing each document. I then make a hashset of the tokens I have, and for each of these unique tokens I am ...
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 ...
5
votes
4answers
120 views

Java Scanner Dilimiter

I'm using Scanner and a Delimiter to tokenize my .txt file (it's a homework that I've got to do). First version of the file looks like this: 5,5,5,6,5,8,9,5,6,8, good, very good, excellent, good ...
4
votes
1answer
173 views

How to build a tokenizer in PHP?

I'm building a site to learn basic programming, I'm going to use a pseudolanguage in which users can submit their code and I need to interpret it. However I'm not sure how to build a tokenizer in PHP. ...
3
votes
2answers
69 views

Java disambiguation of unary prefix operators

How does the Java parser handle ambiguous unary operators? For example, assuming you had int x declared somewhere, +--x is perfectly valid code. ---x is theoretically valid as well, but the compiler ...
2
votes
2answers
39 views

Handling tokens with leading zeros

For tokenizing the input expression I'm using tokenize.generate_tokens(): tokens = cStringIO.StringIO(SourceLine).readline tokens = tokenize.generate_tokens(tokens) Now, when SourceLine = "Y123 = ...
1
vote
2answers
56 views

XSLT analyze string and tokenazation proper usage

I'm trying to analyze some huge string and I'm using two different methods in XSLT (one called tokenize and the other one called analyze string). Suppose I have the following string: var ...
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 ...
1
vote
2answers
147 views

Why is my leading wildcard search failing in Solr?

I have a text field defined that I use copyField to fill with various source fields, and the goal is for this one field to be what I use to search my Solr index. This text field is defined to use ...
0
votes
0answers
147 views

JQuery token input without autocomplete [closed]

I'm looking for something like tagedit, but without the autocomplete component. I simply need to add multiple keywords into a text input form, whatever the user inputs. I still need it to ...
1
vote
2answers
62 views

String split with regex

I want to take a string according to my regex in java. Suppose i have a String "R12T12W5P12T5L3" . And now i want to have something like this : myStr[0]="R12T12",myStr[1]="W5P12",myStr[2]=T5L3. I want ...
5
votes
4answers
276 views

How do I find all the classes used in a PHP file?

I am trying to use the tokenizer to scan a file to find all the defined classes, anything they extend, any created instances, and anytime they were statically invoked. <?php $tokens = ...
0
votes
2answers
26 views

When trying to add a space back into a tokenized String, why are two spaces added into my output?

Beginner here. Sorry for the vague title but the code should put my question into perspective. public static void main(String [] args) { String sentence = "hi. how are you! i'm just dandy."; ...
0
votes
2answers
96 views

Finding exact position of tokenized sentences

I want to extract sentences of text, but I need exact position of results. Current implementation of tokenize.sent_tokenize in NLTK doesn't return position of extracted sentences so I tried something ...
6
votes
3answers
142 views

how does the String.Split method determine separator precedence when passed multiple multi-character separators?

If you have this code: "......".Split(new String[]{"...", ".."}, StringSplitOptions.None); The resulting array elements are: 1. "" 2. "" 3. "" Now if you reverse the order of the separators, ...
1
vote
2answers
97 views

Is it bad idea using regex to tokenize string for lexer?

I'm not sure how am I gonna tokenize source for lexer. For now, I only can think of using regex to parse string into array with given rule (identifier, symbols such as +,-, etc). For instance, begin ...
0
votes
2answers
236 views

solr autosuggest with diacritics

I'm using solr4 with the TermsComponent Autosuggest (as described here) We're doing a regEx "startsWith"-search, that ignores upper/lower-case, the whole searchQuery looks like this: ...
1
vote
1answer
113 views

Options for MeCab Japanese tokenizer on iOS?

I'm using the iPhone library for MeCab found at https://github.com/FLCLjp/iPhone-libmecab . I'm having some trouble getting it to tokenize all possible words. Specifically, I cannot tokenize "吉本興業" ...
3
votes
6answers
237 views

Extract one value from a column containing multiple delimited values

How can I get the value from the sixth field in the following column? I am trying to get the 333 field: ORGPATHTXT 2123/2322/12323/111/222/333/3822 I believe I have to use select substring, but am ...
3
votes
1answer
122 views

Segment a korean word into individual syllables - C++/Python

I am trying to segment a Korean string into individual syllable. So the input would be a string like "서울특별시" and the outcome "서","울","특","별","시". I have tried with both C++ and Python to segment a ...
0
votes
2answers
208 views

Can not use ICUTokenizerFactory in Solr

I am trying to use ICUTokenizerFactory in Solr schema. This is how I have defined field and fieldType. <fieldType name="text_icu" class="solr.TextField" positionIncrementGap="100"> ...
1
vote
2answers
125 views

How to tokenize contractions in Python?

I have sentences that I want to tokenize, including the punctuations. But I need to handle contractions so that words which are something+not like "can't" is tokenized into "ca" and "n't" where the ...
1
vote
1answer
100 views

Tokenizing a string into a vector of strings [duplicate]

Possible Duplicate: Splitting a string in C++ I can't use boost (as I've seen as a solution for a lot of tokenizing questions). First I place a typed command into a string. Command example: ...
1
vote
1answer
207 views

JQuery TokenInput not displaying search result

I am using jQuery Tokeninput to display the emails of user, Actually I am trying to invite users. When I click on the input text and type some email it always say no result even if that email exists. ...
0
votes
1answer
229 views

Android: split a string considering 2 separating characters

I have a string containing messages. The string looks like this: bill:hello;tom:hi;bill:how are you?;tommy:hello!; ... I need to split the string into several srings, on the characters : and ;. For ...
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 ...
1
vote
1answer
97 views

tokenizer for keepwordfilterfactory in solr

I want to use the solr keepwordfilterfactory but not getting the appropriate tokenizer for that. Use case is, i have a string say hi i am coming, bla-bla go out. Now from the following string i want ...
0
votes
1answer
222 views

Reload new data into token input dynamically and also change the prepopulate option

I am using jQuery Tokeninput by James Smith. Once I initialize the token input, I need to change the data fed to it and also change the prepopulate option under script control. How can I do this? ...
1
vote
1answer
78 views

Some problems with NLTK

I'm pretty new to Python and NLTK but I had a question. I was writing something to extract only words longer than 7 characters from a self made corpus. But it turns out that it extracts every word... ...
0
votes
2answers
88 views

How to tokenize phrase in Solr and get facets

I want something to tokenize the data based on the given phrases in the .txt file. Normally the facet query gives me white space tokenized facets. But I want the result to be like this. for e.g my ...
3
votes
1answer
122 views

Is there any Java-based intelligent word tokenizer that makes tokens of adjacent words in a sentence?

I want to tokenize a sentence that has adjacent words, as following: "This is a samplestring that Iwanttotokenize." In above example, there are two cases "samplestring" & "Iwanttotokenize" where ...

1 2 3 4 5 14