Tagged Questions

5
votes
3answers
277 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 ...
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 = ...
1
vote
1answer
444 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
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
597 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
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 = ...
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
87 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
2answers
101 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
172 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
130 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 ...
-1
votes
3answers
291 views

tokenize module

Please help There are many tokens in module tokenize like STRING,BACKQUOTE,AMPEREQUAL etc. >>> import cStringIO >>> import tokenize >>> source = ...