1
vote
1answer
54 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.re …
0
votes
7answers
290 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 …
0
votes
1answer
142 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 classe …
0
votes
2answers
634 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 …
0
votes
3answers
285 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
…
4
votes
6answers
477 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
…
2
votes
2answers
104 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 …
1
vote
1answer
71 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 = toke …
2
votes
1answer
145 views
When using XPath to find variable, taking only a piece of that variable
Hi,
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 tokeniz …
8
votes
4answers
3k views
NSString tokenize in Objective-C
What is the best way to tokenize/split a NSString in Objective-C?
1
vote
6answers
220 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 …
-2
votes
4answers
119 views
tokenize module
Hello,
Please help
There are many tokens in module tokenize like STRING,BACKQUOTE,AMPEREQUAL etc.
>>> import cStringIO
>>> import tokenize
>>> sou …
