Tagged Questions
The tokenize tag has no wiki summary.
50
votes
4answers
27k views
6
votes
6answers
1k views
What is more efficient a switch case or an std::map
I'm thinking about the tokenizer here.
Each token calls a different function inside the parser.
What is more efficient:
A map of std::functions/boost::functions
A switch case
I thank everyone in ...
5
votes
3answers
273 views
RegEx Tokenizer: split text into words, digits, punctuation, and spacing (do not delete anything)
I almost found the answer to this question in this thread (samplebias's answer); however I need to split a phrase into words, digits, punctuation marks, and spaces/tabs. I also need this to preserve ...
5
votes
2answers
9k views
Tokenizing and sorting with XSLT 1.0
I have a delimited string (delimited by spaces in my example below) that I need to tokenize, sort, and then join back together and I need to do all this using XSLT 1.0. How would I do that? I know I ...
4
votes
1answer
548 views
Tokenizing Twitter Posts in Lucene
My question in a nutshell: Does anyone know of a TwitterAnalyzer or TwitterTokenizer for Lucene?
More detailed version:
I want to index a number of tweets in Lucene and keep the terms like @user or ...
3
votes
2answers
155 views
Boost::Split using whole string as delimiter
I would like to know if there is a method using boost::split to split a string using whole strings as a delimiter. For example:
str = "xxaxxxxabcxxxxbxxxcxxx"
is there a method to split this string ...
3
votes
9answers
3k views
Tokenize a string with a space in java
I want to tokenize a string like this
String line = "a=b c='123 456' d=777 e='uij yyy'";
I cannot split based like this
String [] words = line.split(" ");
Any idea how can I split so that I get ...
2
votes
1answer
1k views
C++ Boost: Split String
How can I split a string with Boost with a regex AND have the delimiter included in the result list?
for example, if I have the string "1d2" and my regex is "[a-z]" I want the results in a vector ...
2
votes
2answers
316 views
Python3.0 - tokenize and untokenize
I am using something similar to the following simplified script to parse snippets of python from a larger file:
import io
import tokenize
src = 'foo="bar"'
src = bytes(src.encode())
src = ...
2
votes
1answer
403 views
When using XPath to find variable, taking only a piece of that variable
I am new to XPath. I am writing a code to grab all the 3 digit numbers from a page. They are not constant, varying between 105, 515, and 320. I want two be able to tokenize these numbers into two ...
1
vote
1answer
52 views
XSL: Issue with tokenizing in the for loop
I am using the following stylesheet for displaying a table in the excel workbook with the data. I am not able to get the desired result instead it is displaying as differently as given below.
...
1
vote
1answer
439 views
RegEx Tokenizer to split a text into words, digits and punctuation marks
What I want to do is to split a text into his ultimate elements.
For example:
from nltk.tokenize import *
txt = "A sample sentences with digits like 2.119,99 or 2,99 are awesome."
...
1
vote
3answers
126 views
Best method for tokenizing / extracting info from a string
I am trying to convert date-times that i am receiving into a particular format to insert into a MySQL database. The program is written in C++, and the following solution works but I feel it is ...
1
vote
1answer
96 views
Bug in python tokenize?
Why would this
if 1 \
and 0:
pass
simplest of code choke on tokenize/untokenize cycle
import tokenize
import cStringIO
def tok_untok(src):
f = cStringIO.StringIO(src)
return ...
1
vote
1answer
293 views
SWI-Prolog tokenize_atom/2 replacement?
What I need to do is to break atom to tokens. E. g.:
tokenize_string('Hello, World!', L).
would unify L=['Hello',',','World','!']. Exactly as tokenize_atom/2 do. But when I try to use ...
1
vote
1answer
907 views
jQuery + Facebook style status update textbox - Autocomplete links to profiles
I have a social networking website with a status update textbox, much like facebook. However I would also like the user to be able to type the @ symbol while typing a new status which brings up an ...
1
vote
4answers
308 views
Java - Tokenize Parameter List
I'm trying to create a method which takes a String parameter and then returns a two dimensional String array of parameter names and values.
protected final String[][] setParams (String parms) {
...
1
vote
1answer
590 views
How to handle a tokenize error with unterminated multiline comments (python 2.6)
The following sample code:
import token, tokenize, StringIO
def generate_tokens(src):
rawstr = StringIO.StringIO(unicode(src))
tokens = tokenize.generate_tokens(rawstr.readline)
for i, ...
1
vote
3answers
6k views
Parsing string in Ruby
I have a pretty simple string I want to parse in ruby and trying to find the most elegant solution. The string is of format
/xyz/mov/exdaf/daeed.mov?arg1=blabla&arg2=3bla3bla
What I would like ...
1
vote
1answer
213 views
Python3.0: tokenize & BytesIO
When attempting to tokenize a string in python3.0, why do I get a leading 'utf-8' before the tokens start?
From the python3 docs, tokenize should now be used as follows:
g = ...
1
vote
6answers
1k views
string slicing, php
is there a way to slice a string lets say i have this variable
$output=Country=UNITED STATES (US) &City=Scottsdale, AZ &Latitude=33.686 &Longitude=-111.87
i want to slice it in a way i ...
0
votes
1answer
39 views
tokenize an email using python
I need to tokenize an email using python
Means, I need the headers, the text, each and everything to be stored in some different variable.
Currently I am trying to do it with this email class of ...
0
votes
1answer
83 views
Splitting a string after punctuation while including punctuation
I'm trying to split a string of words into a list of words via regex. I'm still a bit of a beginner with regular expressions.
I'm using nltk.regex_tokenize, which is yielding results that are close, ...
0
votes
1answer
89 views
How to use CFStringTokenizer with Chinese and Japanese?
I'm using the code here to split text into individual words, and it's working great for all languages I have tried, except for Japanese and Chinese.
Is there a way that code can be tweaked to ...
0
votes
1answer
42 views
In XPath how can I check if a list contains a specific item?
I need to have a list contains function in xpath which will work like this:
//*[contains( ("one", "two", "three"), "one")
Is there anything like this?
Just for context, this is the problem I am ...
0
votes
1answer
48 views
Should I change from buffered read to in-memory/tokenize on Android app for reading a 100,000 line file?
Currently I am loading a text file that contains 100,000 lines into a SortedMap using buffered reads. Should I abandon this approach and instead load the entire file into memory and then tokenize by ...
0
votes
3answers
412 views
Tokenize NSString twice in Objective-C
I don't have much experience in objective-c, sorry if this is really obvious.
What I need is to split a NSString into tokens. The tokens are separated by spaces or by another sign (not a letter). ...
0
votes
2answers
99 views
Weird Tokenization Error
I'm trying to Tokenize tweets, but am running into a problem with looping through them.
For example, this works fine:
tweet = """This is an example Tweet!"""
# tokenize the sentence
print text
...
0
votes
5answers
171 views
operating over strings, python
How to define a function that takes a string (sentence) and inserts an extra space after a period if the period is directly followed by a letter.
sent = "This is a test.Start testing!"
def ...
0
votes
1answer
127 views
help with handling tokenization errors
The code is in python.
Please find below the piece of code that I use to tokenize a string.
strList = list(token[STRING] for token in generate_tokens(StringIO(line).readline) if token[STRING])
I ...
0
votes
4answers
516 views
How do I get the next token in a Cstring if I want to use it as an int? (c++)
My objective is to take directions from a user and eventually a text file to move a robot. The catch is that I must use Cstrings(such as char word[];) rather than the std::string and tokenize them for ...
0
votes
1answer
415 views
What is the best way to tokenize a text file in Java?
What is the best way to tokenize a text file in Java, if
I want to work with a java.io.Reader, not a String
Delimiters should be returned?
I have evaluated the following classes:
...
-1
votes
3answers
290 views
tokenize module
Please help
There are many tokens in module tokenize like STRING,BACKQUOTE,AMPEREQUAL etc.
>>> import cStringIO
>>> import tokenize
>>> source = ...