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

learn more… | top users | synonyms (3)

8
votes
2answers
356 views

Split tokens on string using Regex in c#

I have some "tokenized" templates, for example (I call tokens the part between double braces): var template1 = "{{TOKEN1}} is a {{TOKEN2}} and it has some {{TOKEN3}}"; I want to extract an array ...
2
votes
1answer
93 views

split fun with two delimiters “|” is not working

In my doInBackground(String... arg0) method I get a result variable containing this: 4|Litter Bin,-37.8141472000103,144.963691391683,17.354417684886|Litter ...
1
vote
1answer
291 views

stanford nlp tokenizer

How can i tokenize a string in java class using stanford parser? I am only able to find examples of documentProcessor and PTBTokenizer taking text from external file. DocumentPreprocessor dp = new ...
3
votes
3answers
147 views

How to index a postgres table by name, when the name can be in any language?

I have a large postgres table of locations (shops, landmarks, etc.) which the user can search in various ways. When the user wants to do a search for the name of a place, the system currently does ...
-4
votes
1answer
81 views

Source code parser(prefered Python) [closed]

I am looking a tool which take source code as a input and tokenize them as a operator, keyword, class, function, member variable, comments and parameter. Tool should take parsing logic from ...
3
votes
3answers
270 views

XSLT tokenize nodeset

I'm trying to create a variable that stores the value of an input string (TypeInput) in init cap form. This new variable will be used in different places in my stylesheet. I created a template that I ...
1
vote
2answers
318 views

splitting a comma delimited string with escaping quotes

I see that there are several similar questions, but I have not found any of the answers satisfactory. I have a comma delimited file where each line looks something like this: 4477,52544,,,P,S, ...
1
vote
2answers
125 views

Leading Space when using .split

I have an assignmnt to modify a program from my text book. The program takes an input string from the user and then responds with how many words were enterd. My assignment is to change this to do a ...
0
votes
2answers
208 views

Lexing in Java with recursive regex

I'm parsing text using Java. I've defined a grammar below: Start := "(\\<)" Stop := "(\\>)" Var = "(\\w*)"; Cons = "([0-9]*)"; Type1 := Start ((Var | Cons) | TypeParent) (Type1 ((Var | Cons) | ...
0
votes
1answer
251 views

what javascript to simulate tab, enter or comma input for jquery.tokeninput?

Anybody know jquery.tokeninput? What combination of (jQuery) events do I use (presumably on the input field) to simulate the effect of entering text and pressing tab, enter or the comma key when the ...
1
vote
2answers
196 views

How to find scope level with token_get_all()?

I'm using token_get_all() to do some static analysis on a php project. How do I find the scope level for stuff like: Finding if the current T_FUNCTION is still inside the T_CLASS being parsed ...
2
votes
1answer
78 views

How to do multiple string replacements in a cleaner manner? - Python

What is a fast way of doing multiple string.replace? I'm trying to add spaces to shorten english words like he'll -> he 'll he's -> he 's we're -> we 're we've -> we 've also i'm ...
1
vote
2answers
195 views

How does java.util.Scanner work?

I have a simple language which consists of patterns like size(50*50) start(10, 20, -x) forward(15) stop It's an example of turtle-drawing language. I need to properly tokenize it. The above is a ...
2
votes
1answer
110 views

Tokenize multiple String in array if the input sometimes doesn't have token

I have input in this form test@test.com and\or in this form test@test.com;test2@test.com or test@test.com;test2@test.com;test3@test.com I should tokenize all, in a String array that contains ...
1
vote
1answer
83 views

solr : how to boost query term after tokenizer

If the query word is "ABCD", then after being tokenized it is "A" "BC" "D". I want to boost term "BC", so the query word is like this: A BC^10 D" and phrase query "ABCD" All query words users typing ...
1
vote
1answer
106 views

StreamReader — File Parser — Check Line Contents

I have successfully got the C# StreamReader working: using (StreamReader fileParser = new StreamReader(tbFileSelection.Text)) { String line = fileParser.ReadToEnd(); Console.WriteLine(line); } ...
2
votes
1answer
138 views

Control order of token filters in ElasticSearch

Trying to control the order that token filters are applied in ElasticSearch. I know from the docs that the tokenizer is applied first, then the token filters, but they do not mention how the order ...
0
votes
4answers
1k views

c++ tokenize std string [duplicate]

Possible Duplicate: How do I tokenize a string in C++? Hello I was wondering how I would tokenize a std string with strtok string line = "hello, world, bye"; char * pch = ...
0
votes
1answer
86 views

C++ program checking for tag validity

I'm a beginner in C++ and was trying to make the checks work as they are suppose to. But it's returning true for nearly every test. It's only suppose to return true in this case: <red> Red ...
0
votes
2answers
185 views

Seperate text in java with backslash-zero as delimiter

Suppose I have a binary file that has this content: abc\0def\0ghi\0 The content is already read and stored in a string variable s. How should I extract the components "abc", "def", "ghi" into ...
0
votes
1answer
245 views

Custom tokenizer for apache lucene 4

I have a tokenized text(splitted sentences and splitted words). And going to create Apache Lucene index, based on this structure. What is the easiest way to extend or replace a standart tokenizer to ...
1
vote
1answer
295 views

CString Tokenization Issue

I'm using CString::Tokenize method in order to tokenize a string using a delimiter, but I noticed something strange, I call that method on my string inside a loop because I want to retrieve all the ...
0
votes
1answer
52 views

How do i Tokenize a string?

I want my program to know if the string is a Noun, verb , adjective or etc. and it needs to be tokenized but how do i do that? Do i need a Database for the definition of words? using Free context ...
0
votes
1answer
282 views

jquery tokeninput with PHP

I am using Jquery Tokeninput in my project to display some numbers in a textarea. I have a hidden input field in which I save the JSON string containing the numbers. The JSON looks like patents = ...
1
vote
2answers
261 views

Android StringTokenizer - reading blank values

I have pipe delimited strings containing id, latitude, longitude, refname, userid, username: 1390|-32.5506782531738|18.9797592163086|Hardie - Vrede 4|21|Hardie van der Merwe ...
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 ...
5
votes
2answers
271 views

Tokenize byte array

I have a array of raw bytes which i need to tokenize to a list of byte array in java. Explained better by the following method declaration. public static List<byte[]> splitMessage(byte[] ...
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 ...
1
vote
1answer
190 views

How to tokenize Chinese language document

I will be getting document written in Chinese language for which I have to tokenize and keep it in database table. I was trying the CJKBigramFilter of Lucene but all it does is unite the 2 character ...
1
vote
2answers
828 views

Using stringstream to tokenize a string with different delimeters

How can you use stringstream to tokenize a line that looks like this. [label] opcode [arg1] [,arg2] The label may not always be there but if it isn't, there will be a white space. The opcode is ...
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 ...
0
votes
1answer
118 views

How to put equations into a matrix?

I'm working on a program to solve multiple equations, but that's not relevant. What I'm having trouble with is interpreting equations. e.g. I have a file called data.txt whose contents are as ...
0
votes
3answers
257 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), ...
0
votes
2answers
357 views

Batch file - how to read first token of a string delimited by a space

Using batch script, I want to get a first token of a line delimited by a space. Can this be done without a for loop? example input: a b c d example output: a Thanks.
1
vote
0answers
56 views

Lookahead in ICU break rules

I have a break rule that match wide variety of emoticons but also it yields some unnecessary matches, like '(Be' is matched as a smiley in '(Bellevue, WA)' I'd like to improve it by adding a negative ...
1
vote
1answer
156 views

C# SQL Server Query First/Last Name Columns where First Name Has Space

I have a table structure like so: user_id | first_name | last_name 1 | John | Smith 2 | Mary | Jones 3 | Sang He | Lau // here is a sample of the code I currently ...
1
vote
3answers
437 views

C++ - Why is reading lines from a file by tokenizer is so slow?

I am trying to read 200,000 records from a file and then use tokenizer to parse the string and remove the quotes which are around each part. But the running time is very high compared to normally ...
0
votes
2answers
183 views

C++ - Remove or skip quote char in reading a file line by tokenizer

I have a csv file that has records like: ...
0
votes
0answers
128 views

Tokenize Korean text

Please help me out on how to tokenize Korean text in java. I am trying to use lucene but everytime i am reading from a file print it, instead of showing the Korean text and getting ???? as text. ...
1
vote
2answers
179 views

XQuery tokenize strings with single and multiple values

I have the following XML file: <layout> <layout-structure> <layout-root id="layout-root"> <layout-chunk id="header-text"> <layout-leaf xref="lay-1.01"/> ...
0
votes
1answer
124 views

solr fieldtype string or tokenizer

I need to search for a specific field using tokenizers and by string. I'll use tokenizer only if no result were found for the string one. Is there any way to do that?
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
2answers
203 views

How to rewrite a simple tokenizer to use regular expressions?

This an optimized version of the tokenizer that was first written, and it works fairly well. A secondary tokenizer can parse the output from this function to create classified tokens of greater ...
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 ...
-1
votes
1answer
278 views

File tokenization in java

The below code is for tokenization in java. I am having a small bug which I am just not able to fix. This is regarding file tokenization. In this code, if a user enters four capital words in a file. ...
0
votes
0answers
38 views

Tokensize web.xml

JSF 2.0 supports a new property javax.faces.PROJECT_STAGE with values [Development,Production, UnitTest, SystemTest, Extension ]. I would like to tokenize the value based on the environment. ...
2
votes
3answers
106 views

Replacing sub-string of a String with another String

I have a String String str = (a AND b) OR (c AND d) I tokenise with the help of code below String delims = "AND|OR|NOT|[!&|()]+"; // Regular expression syntax String newstr = ...
0
votes
3answers
78 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
2answers
149 views

fstream file fails to read

I want to pass an fstream object and tokenize the the words. It will always print could not open file in hasNextToken() . May someone help me. //main.cpp int main() { string filename = ...
2
votes
3answers
113 views

Determine the Kind (int, float) of Number a Python numeric literal represents?

In case anyone is interested, this is a followup to Regular expression to match a Python integer literal. The tokenize module is useful for breaking apart a Python expression, but tokenize.NUMBER is ...

1 2 3 4 5 14