Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

27
votes
7answers
18k 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 only work on ...
26
votes
1answer
590 views

PHP namespace removal / mapping and rewriting identifiers

I'm attempting to automate the removal of namespaces from a PHP class collection to make them PHP 5.2 compatible. (Shared hosting providers do not fancy rogue PHP 5.3 installations. No idea why. Also ...
10
votes
5answers
768 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 In particular, I'm ...
10
votes
3answers
1k views

Looking for a clear definition of what a “tokenizer”, 'parser“ and ”lexers" are and how they are related to each other and used?

I am looking for a clear definition of what a "tokenizer", "parser" and "lexer" are and how they are related to each other (e.g., does a parser use a tokenizer or vice versa)? I need to create a ...
9
votes
3answers
226 views

Is it a Lexer's Job to Parse Numbers and Strings?

Is it a lexer's job to parse numbers and strings? This may or may not sound dumb, given that fact that I'm asking whether a lexer should parse input. However, I'm not sure whether that's in fact the ...
9
votes
2answers
1k views

How to change GWT Place URL from the default “:” to “/”?

By default, a GWT Place URL consists of the Place's simple class name (like "HelloPlace") followed by a colon (:) and the token returned by the PlaceTokenizer. My question is how can I change ":" to ...
6
votes
6answers
604 views

What are some practical uses of PHP tokenizer?

What are practical and day-to-day usage examples of PHP Tokenizer ? Has anyone used this?
6
votes
7answers
759 views

Tokenizer for full-text

This should be an ideal case of not re-inventing the wheel, but so far my search has been in vain. Instead of writing one myself, I would like to use an existing C++ tokenizer. The tokens are to be ...
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
1answer
207 views

How to have a “custom split()” in a list with strtk?

I read http://www.codeproject.com/KB/recipes/Tokenizer.aspx and I want to have the last exemple ( at the end, just before all graphs) "Extending Delimiter Predicates" in my main but I haven't the same ...
5
votes
2answers
269 views

How to tokenize Perl source code?

I have some reasonable (not obfuscated) Perl source files, and I need a tokenizer, which will split it to tokens, and return the token type of each of them, e.g. for the script print "Hello, ...
5
votes
2answers
768 views

A string tokenizer in C++ that allows multiple separators [closed]

Possible Duplicate: C++: How to split a string? Is there a way to tokenize a string in C++ with multiple separators? In C# I would have done: string[] tokens = "adsl, dkks; dk".Split(new ...
5
votes
7answers
35k views

How do I read input character-by-character in Java?

I am used to the c-style getchar(), but it seems like there is nothing comparable for java. I am building a lexical analyzer, and I need to read in the input character by character. I know I can use ...
4
votes
4answers
135 views

Reading a file in C

I have an input file I need to extract words from. The words can only contain letters and numbers so anything else will be treated as a delimiter. I tried fscanf,fgets+sscanf and strtok but nothing ...
4
votes
1answer
107 views

How to stop the result in solr, when phrase containing a stopword?

I have a problem while searching with Solr a phrase which has stopwords. Solr send result with stopword and this is not my expected output. I added a word "test" in stopwords.txt file. In schema.xml ...
4
votes
1answer
321 views

StandardTokenizer behaviour

Given the code is running under Lucene 3.0.1 import java.io.*; import org.apache.lucene.analysis.*; import org.apache.lucene.util.Version; public class MyAnalyzer extends Analyzer { public ...
4
votes
5answers
355 views

String tokenizer for CPP String?

I want to use string Tokenizer for CPP string but all I could find was for Char*. Is there anything similar for CPP string ? Thanks in advance
4
votes
4answers
547 views

How do I parsing a complex file format in Delphi? (Not CSV, XML, etc)

It's been a few years since I've had to parse any files which were harder than CSV or XML so I am out of practice. I've been given the task of parsing a file format called NeXus in a Delphi ...
4
votes
2answers
215 views

Wind blowing on String

I have some basic idea on how to do this task, but I'm not sure if I'm doing it right. So we have class WindyString with metod blow. After using it : System.out.println(WindyString.blow( ...
4
votes
5answers
737 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 that takes an int a ...
4
votes
11answers
638 views

Pythonic way to implement a tokenizer

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 the theory, I'd just like ...
3
votes
3answers
117 views

java split string

in Java, if I have a string with this format: ( string1 , string2 ) ( string2 ) ( string4 , string5 , string6 ) [s2] How can I split the string to get an array of string as this? string1 , string2 ...
3
votes
1answer
130 views

Solr Tokenizer Injection

As an example I have a text field that might contain the following string: "d7199^^==^^81^^==^^A sentence or two!!" I want to tokenize this data but have each token contain the first part of the ...
3
votes
1answer
111 views

Catching errors thrown by token_get_all (Tokenizer)

PHPs token_get_all function (which allows converting a PHP source code into tokens) can throw two errors: One if an unterminated multiline comment is encountered, the other if an unexpected char is ...
3
votes
3answers
339 views

Recursive Descent Parser for something simple?

I'm writing a parser for a templating language which compiles into JS (if that's relevant). I started out with a few simple regexes, which seemed to work, but regexes are very fragile, so I decided to ...
3
votes
6answers
109 views

Is there a way to shorten a conditional that contains a bunch of boolean comparisons?

e.g if("viewCategoryTree".equals(actionDetail) || "fromCut".equals(actionDetail) || "fromPaste".equals(actionDetail) || ...
3
votes
1answer
239 views

Web server - how to parse requests? Asynchronous Stream Tokenizer?

I'm attempting to create a simple webserver in C# in asynchronous socket programming style. The purpose is very narrow - a Comet server (http long-polling). I've got the windows service running, ...
3
votes
4answers
195 views

Tokenizer efficiency question

I'm writing a compiler front end for a project and I'm trying to understand what's the best method of tokenize the source code. I can't choose between two ways: 1) the tokenizer read all tokens: ...
3
votes
3answers
302 views

C Tokenizer - How does it work?

How does this work? I know to use it you pass in: start: string (e.g. "Item 1, Item 2, Item 3") delim: delimiter string (e.g. ",") tok: reference to a string which will hold the token nextpos ...
3
votes
4answers
314 views

c++ what is the advantage of lex and bison to a selfmade tokenizer / parser

I would like to do some parsing and tokenizing in c++ for learning purposes. Now I often times came across bison/yacc and lex when reading about this subject online. Would there be any mayor benefit ...
3
votes
4answers
200 views

Lexers/tokenizers and character sets

When constructing a lexer/tokenizer is it a mistake to rely on functions(in C) such as isdigit/isalpha/... ? They are dependent on locale as far as I know. Should I pick a character set and ...
3
votes
5answers
11k views

Tokenizer, Stop Word Removal, Stemming in Java

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: "The big fat cat, said ...
3
votes
1answer
1k 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. ...
3
votes
3answers
445 views

Need to construct a XML representation for C# code

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 the AST to XML. Looking ...
3
votes
2answers
793 views

How to parse, persist and retrieve a string with tags separated by spaces?

My database consists of 3 tables (one for storing all items, one for the tags, and one for the relation between the two): Table: Post Columns: PostID, Name, Desc Table: Tag Columns: TagID, Name ...
3
votes
4answers
9k views

How do I tokenize input using Java's Scanner class and regular expressions?

Just for my own purposes, I'm trying to build a tokenizer in Java where I can define a regular grammar and have it tokenize input based on that. The StringTokenizer class is depracated, and I've found ...
2
votes
4answers
75 views

Creating a List Lexer/Parser

I need to create a lexer/parser which deals with input data of variable length and structure. Say I have a list of reserved keywords: keyWordList = ['command1', 'command2', 'command3'] and a user ...
2
votes
2answers
259 views

Solr: exact phrase query with a EdgeNGramFilterFactory

In Solr (3.3), is it possible to make a field letter-by-letter searchable through a EdgeNGramFilterFactory and also sensitive to phrase queries? By example, I'm looking for a field that, if ...
2
votes
2answers
80 views

How to extend WhitespaceTokenizer?

I need to use a tokenizer that splits words on whitespace but that doesn't split if the whitespace is whithin double parenthesis. Here an example: My input-> term1 term2 term3 ((term4 term5)) ...
2
votes
1answer
74 views

Order of precedence for token matching in Flex

My apologies if the title of this thread is a little confusing. What I'm asking about is how does Flex (the lexical analyzer) handle issues of precedence? For example, let's say I have two tokens ...
2
votes
1answer
162 views

In Lucene how can a TokenFilter emit more than one term?

I'm working with Lucene 3.2. How can I use a TokenFilter that doesn't just filter/modify a term, but can also insert other terms into the stream? For example, I want a filter that take as input ...
2
votes
1answer
401 views

How to use a Lucene Analyzer to tokenize a String?

Is there a simple way I could use any subclass of Lucene's Analyzer to parse/tokenize a String? Something like: String to_be_parsed = "car window seven"; Analyzer analyzer = new ...
2
votes
1answer
140 views

PHP, Tokenizer, find all the arguments of the function

Help me find all the arguments of the function "funcname" using the function token_get_all() in the source code. It sounds simple, but there are many special options, such as arrays as parameters or ...
2
votes
1answer
409 views

Lucene standard analyzer split on period

How do I make Lucene's Standard Analyzer tokenize on the'.' char? For eg., on querying for "B" I need it to return the B in "A.B.C" as the result. I need to treat numbers the way the standard ...
2
votes
2answers
149 views

Good java tokenizers?

I am curious about any good tokenizers out there for java OTHER THAN those included in the standard libs such as StreamTokenizer and StringTokenizer, which in my opinion are not very good. The only ...
2
votes
3answers
269 views

Generating PHP code (from Parser Tokens)

Is there any available solution for (re-)generating PHP code from the Parser Tokens returned by token_get_all? Other solutions for generating PHP code are welcome as well, preferably with the ...
2
votes
1answer
244 views

Lucene.NET: Camel case tokenizer?

I've started playing with Lucene.NET today and I wrote a simple test method to do indexing and searching on source code files. The problem is that the standard analyzers/tokenizers treat the whole ...
2
votes
1answer
310 views

sqlite-fts3: custom tokenizer?

Does anyone here have experience with writing custom FTS3 (the full-text-search extension) tokenizers? I'm looking for a tokenizer that will ignore HTML tags. Thanks.
2
votes
3answers
683 views

Is there a Javascript lexer / tokenizer (in PHP)?

I've seen a couple of Python Javascript tokenizers and a cryptic document on Mozilla.org about a Javascript Lexer but can't find any Javascript tokenizers for PHP specifically. Are there any? Thanks
2
votes
2answers
1k views

Using multiple tokenizers in Solr

What I want to be able to do is perform a query and get results back that are not case sensitive and that match partial words from the index. I have a Solr schema set up at the moment that has been ...

1 2 3