Tagged Questions

0
votes
3answers
46 views

C tokenize polynomial coefficients

I'm trying to put the coefficients of polynomials from a char array into an int array I have this: char string[] = "-4x^0 + x^1 + 4x^3 - 3x^4"; and can tokenize it by the space i …
4
votes
6answers
127 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 …
1
vote
3answers
132 views

Approaching Text Parsing in Scala

I'm making an application that will parse commands in Scala. An example of a command would be: todo get milk for friday So the plan is to have a pretty smart parser break the li …
2
votes
8answers
621 views

Trim string to length ignoring HTML.

This problem is a challenging one. Our application allows users to post news on the homepage. That news is input via a rich text editor which allows HTML. On the homepage we want t …
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 …
0
votes
2answers
21 views

Fast ESP character normalization

Hi, I'm running a search application on a FAST ESP server. Now I have this problem with character normalization. What I want is to search for 'wurth' and get a hit in 'würth'. …
8
votes
1answer
128 views

How does one word break languages without spaces between words, like Asian languages?

I'd like to make MySQL full text search work with Japanese and Chinese text, as well as any other language. The problem is that these languages and probably others do not normally …
0
votes
5answers
382 views

c++ tokenize a string and include delimiters

I'm tokening with the following, but unsure how to include the delimiters with it. void Tokenize(const string str, vector<string>& tokens, const string& delimiters) …
1
vote
2answers
110 views

Is there a simple way I can tokenize a string without a full-blown lexer?

I'm looking to implement the Shunting-yard Algorithm, but I need some help figuring out what the best way to split up a string into its tokens is. If you notice, the first step of …
8
votes
10answers
349 views

Have you ever effectively used lexer/parser in real world application?

Recently, I am started learning Antlr. And knew that lexer/parser together could be used in construction of programming languages. Other than DSL & programming languages, Have …
2
votes
3answers
207 views

Using boost::tokenizer with string delimiters

I've been looking boost::tokenizer, and I've found that the documentation is very thin. Is it possible to make it tokenize a string such as "dolphin--monkey--baboon" and make every …
0
votes
2answers
66 views

register_printf_function in PHP

I need to let the user specify a custom format for a function which uses vsprintf, and since PHP doesn't have glibc' register_printf_function(), I'll have to do it with PCRE. My q …
-2
votes
1answer
97 views

Trying to implement this lexer pseudocode

I'm trying to implement this lexer pseudocode, given in class in java. I;m to use iterator in designing the symbol table as well as String Tokinizer. this is the peudocode: publ …
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 …
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 …

1 2 3 next
15 30 50 per page