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

learn more… | top users | synonyms (3)

1
vote
1answer
136 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
303 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
129 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
287 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
128 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
112 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
222 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
277 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
207 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
110 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
249 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
81 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
93 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
128 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
vote
3answers
175 views

Xslt: How to split a string and add a class to two words

I need to highlight the two first words in a string (HTML header) with red by adding a CSS class, and tokenize is what I'm looking at right now. How exactly can this be done? If possible at all. Some ...
-2
votes
3answers
55 views

Break an integer and insert into an array in specific order [closed]

I have a variable that stores a number, let's say $num = (double)758341. I wan to break the $num and then insert into an array in ascending or descending order. I am just confused how a number will be ...
0
votes
2answers
63 views

formatting of files before indexing into solr server

I'm using the Solr server to provide search capability for a tool. I wanted to know if there is a facility provided by solr that will allow me to format some files before they are indexed ? more ...
0
votes
0answers
70 views

StringTokenizer returns wrong token (null)

I use a StringTokenizer, to seperate Strings and read out the information. My problem is: the second loop does not read out the last number. (this is just an example, i have the same problem in my ...
0
votes
2answers
73 views

why StringTokenizer does not work properly for $$ as delimeter

I am using StringTokenizer to tokenize a string with $$ as delimeter but if my string is like $1$dga74 then it tokenize this from first $. Can any body tell me why this happens and what can I do to ...
0
votes
1answer
91 views

A good way to implement a string tokenizer ( or use one that's already established )

Found myself in a situation where I was making one of two rookie mistakes: Writing code that I should get out of a library Writing super complex code that could be greatly simplified using better ...
3
votes
3answers
94 views

Efficient method to exclude items in one list from another list in Python

I have a list of 8000 strings (stop_words) and a list of 100,000 strings of various lengths running to millions of individual words. I am using the function to tokenize the 100,000 string and to ...
1
vote
3answers
195 views

How to tokenize a simple mixed string into either ints or symbols?

Trying to convert a simple math string "1 2 3 * + 4 5 - /" to an array of integers and/or symbols like [1, 2, 3, :*, :+, 4, 5, :-, :/]. Is there a more elegant (and extendable) solution than this? ...
0
votes
4answers
129 views

How to add delimiters from the StringTokenizers to a seperate string?

I am inputting a string and I want to add the delimeters in that string to a different string and I was wondering how you would do that. This is the code I have at the moment. StringTokenizer ...
3
votes
1answer
63 views

How can I statically analyze php scripts to detect global variable usage

I would like to process a folder and count the number of times each global variable is used. I do have a list of the globals, but it would be way cooler if the script detected and output both the ...
0
votes
1answer
53 views

How can I tokenize a CSV row on Android and include empty columns as empty strings?

I want to read a CSV file in Android, but for rows with some blank columns, CSV writes something like this: ,,,,ABC,,,d,mfcmf,fgt, When I tokenize the above line I get ABC as the first string, when ...
0
votes
2answers
190 views

ant - tokenise string into substrings using regex

I have an input string of the format abc;def;ghi;jkl;........ and so on. the smallest allowed input string is abc, while there is no limit on max number of tokens. Also the length of each token is NOT ...
0
votes
1answer
99 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` = '" . ...
0
votes
1answer
118 views

How to use string tokenizer on an array?

I see that you can't use string tokenizer on an array because you cant convert String() to String[]. After a length of time I realized that if the inputFromFile method reads it line by line, I can ...
3
votes
2answers
793 views

Efficiently extracting numbers from a java string (already tried guava and regular expressions)

Trying to efficiently extract some numbers from a string and have tried java.util.regex.Matcher com.google.common.base.Splitter The results were : via Regular Expression: 24417 ms via Google ...
-3
votes
2answers
131 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 ...
0
votes
2answers
41 views

Tokens not constructing properly

im trying to tokenize text files using the following code: String fileContent = ""; String fileContentTokens[]; try{ fileContent = new Scanner(new ...
0
votes
1answer
89 views

Java alternative to PHP Tokenizer

Is there any Java alternative to PHP Tokenizer? http://php.net/manual/en/book.tokenizer.php Edit: I mean Java class that parses Java like PHP Tokenizer parses PHP.
-1
votes
2answers
61 views

Moving from tokenizer to substring

I have this program working with tokenizer, but i was wondering how can i do this using substring. what Im trying to do is have the user enter 14 numbers/characters. and i want to get the input 1 by ...
1
vote
2answers
149 views

Using sent_tokenize in a specific area of a file in Python using NLTK?

I have a file with thousands of sentences, and I want to find the sentence containing a specific character/word. Originally, I was tokenizing the entire file (using sent_tokenize) and then iterating ...
2
votes
1answer
102 views

Antlr3 matching tokens without whitespace

Given the input "term >1", the number(1) and comparison operator(>) should generate seperate nodes in an AST. How can this be achieved? In my tests matching only occured if "c" and "1" where ...
1
vote
2answers
68 views

How to compute word rank in perl

I have a program where I read in a document and then put all the words in a hash delete repeats and add to frequency of that word. So for example: KEY: VALUE: dog 2 cat 4 rat 1 Now I was ...
3
votes
1answer
138 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
1answer
115 views

GetTokenSecret value by dotnetopenauth

I tried to Get Token secret by using dotnetopenoauth. I searched in it and find SimpleConsumerTokenManager class which has GetTokenSecret() which seems fine to me but could not making an ...
0
votes
2answers
155 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 ...
7
votes
4answers
160 views

How get each character from a word with special encoding

I need to get an array with all the characters from a word, but the word has letters with special encoding like á, when I execute the follow code: $word = 'withá'; $word_arr = array(); for ...
4
votes
1answer
161 views

korean language tokenizer

What is the best tokenizer exist for processing Korean language? I have tried CJKTokenizer in Solr4.0. It is doing the tokenization, but accuracy is very low.
-2
votes
1answer
358 views

How to use String tokenizer to remove the words from a list of words? [closed]

I have a list of words after Pos Tagging in Java. Now I want to remove particular words with specified tags.How to use string tokenizer to remove the tagged words? such as to-PRP? and all words with ...
0
votes
1answer
190 views

token_get_all() function not working properly

I want to count the curly brackets in a PHP source code, so i can eventually find the end of a method/function in the given source code. I was adviced to use the token_get_all() function for this ...
2
votes
3answers
927 views

Java Lucene NGramTokenizer

I am trying tokenize strings into ngrams. Strangely in the documentation for the NGramTokenizer I do not see a method that will return the individual ngrams that were tokenized. In fact I only see two ...
2
votes
0answers
109 views

ElasticSearch — incorrect value in one subfield of a multi field

ElasticSearch indexes my business documents with a multi-field for 'name', so that I can weight different degrees of name matching (exact match, one of many words, etc). Here's a snippet from my ...
5
votes
1answer
495 views

Retrieve analyzed tokens from ElasticSearch documents

Trying to access the analyzed/tokenized text in my ElasticSearch documents. I know you can use the Analyze API to analyze arbitrary text according your analysis modules. So I could copy and paste ...
4
votes
1answer
167 views

Tokenize text for search in Python

Looking for strategies on how to tokenize text for search, and some ideas on how to implement them. Specifically, we are trying to tokenize user generated business reviews to help with our business ...
0
votes
3answers
43 views

How to parse the numbers from the text and display it in textBox? c#

I have a string with the following text: :0c4b7fcdffc38322555a9e35c22c9469:Nick:194176015020283762507: How do I parse the final number? i.e.: 194176015020283762507
0
votes
1answer
44 views

I cannot create text_general_edge_ngram field on solr

I want to search for a field on solr and I searched a lot before writing this, my problem is I add the fieldType name block to my schema.xml, but when I try to define a field, solr gives me some ...
0
votes
0answers
177 views

oracle function that accept comma separated value and return in rows

i am looking for an oracle function that accepts comma seperated values eg,[abc,cde] and return me rows so that i can insert into a table directly. eg-: insert into mytable(col) select ...

1 2 3 4 5 14