4
votes
6answers
125 views
Dealing with Tokens in C#
I have the following assignment for homework.
Requirements
design a class called TokenGiver with the following elements:
a default constructor, a parametrized constructor tha …
0
votes
6answers
127 views
The intricacy of a string tokenization function in C
For brushing up my C, I'm writing some useful library code. When it came to reading text files, it's always useful to have a convenient tokenization function that does most of the …
4
votes
6answers
2k views
Scanner vs. StringTokenizer vs. String.Split
I just learned about Java's Scanner class and now I'm wondering how it compares/competes with the StringTokenizer and String.Split. I know that the StringTokenizer and String.Split …
1
vote
3answers
153 views
Tokenizer, Stop Word Removal, Stemming in Java
Hi there
I am looking for a class or method that takes a long string of many 100s of words and tokenizes, removes the stop words and stems for use in an IR system.
For example:
…
1
vote
1answer
164 views
Term extraction: Generatings tags out of text
How to get the same results as http://developer.yahoo.com/search/content/V1/termExtraction.html
This question has been asked quite a few times before.
http://stackoverflow.com/q …
0
votes
1answer
362 views
C Tokenizer (and it returns empty too when fields are missing. yay!)
See also: Is this a good substr() for C?
strtok() and friends skip over empty fields, and I do not know how to tell it not to skip but rather return empty in such cases.
Simila …
2
votes
3answers
132 views
How to create a bmp file from rgb datas stored in a txt file?
Hi guys, I've to create a bmp image from two txt files.The first one is an mxn array:
* * * * * * * *
m n
c11 c21 .. cm1
...
c1n c2n .. cmn
* * * * * * * *
* * * * * * * *
6 5
.7 . …
0
votes
5answers
163 views
how to get data between quotes in java ?
I have this lines of text the number of quotes could change like:
Here just one "comillas"
But I also could have more "mas" values in "comillas" and that "is" the "trick"
I was …
1
vote
4answers
93 views
Parsing Classes, Functions and Arguments in PHP
I want to create a function which receives a single argument that holds the path to a PHP file and then parses the given file and returns something like this:
class NameOfTheClass …
1
vote
5answers
176 views
How can I tokenize this with a regex?
Suppose I have strings like the following :
OneTwo
ThreeFour
AnotherString
DVDPlayer
CDPlayer
I know how to tokenize the camel-case ones, except the "DVDPlayer" and "CDPlayer". …
0
votes
2answers
42 views
Comparing Values in a file with an array
I have a .txt file with integers on each line e.g.
1
4
5
6
I want to count the occurences of the values that are in an array with the file.
My code extract is this
Strin …
1
vote
3answers
153 views
Need to construct a XML representation for C# code
Hi,
I need to convert C# code to an equivalent XML representation.
I plan to convert the C# code (C# 2.0 code snippets, no generics or nullable types) to an AST and then convert t …
4
votes
11answers
396 views
Pythonic way to implement a tokenizer
Hi,
I'm going to implement a tokenizer in Python and I was wondering if you could offer some style advice?
I've implemented a tokenizer before in C and in Java so I'm fine with t …
1
vote
3answers
123 views
Tokenizing blocks of code in Python
I have this string:
[a [a b] [c e f] d]
and I want a list like this
lst[0] = "a"
lst[1] = "a b"
lst[2] = "c e f"
lst[3] = "d"
My current implementation that I don't think is …
1
vote
4answers
123 views
Int tokenizer
I know there are string tokenizers but is there an "int tokenizer"?
For example, I want to split the string "12 34 46" and have:
list[0]=12
list[1]=34
list[2]=46
I …
