Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

77
votes
22answers
81k views

How do I tokenize a string in C++?

Java has a convenient split method: String str = "The quick brown fox"; String[] results = str.split(" "); Is there an easy way to do this in C++?
27
votes
7answers
17k 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 ...
18
votes
9answers
11k views

What is the easiest/best/most correct way to iterate through the characters of a string in Java?

StringTokenizer? Convert the String to a char[] and iterate over that? Something else?
15
votes
6answers
535 views

How does a parser (for example, HTML) work?

For argument's sake lets assume a HTML parser. I've read that it tokenizes everything first, and then parses it. What does tokenize mean? Does the parser read every character each, building up a ...
13
votes
1answer
5k views

How to get a Token from a Lucene TokenStream?

I'm trying to use Apache Lucene for tokenizing, and I am baffled at the process to obtain Tokens from a TokenStream. The worst part is that I'm looking at the comments in the JavaDocs that address my ...
13
votes
2answers
899 views

Word break in languages without spaces between words (e.g., Asian)?

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 have white space ...
11
votes
6answers
1k views

Is there a better (more modern) tool than lex/flex for generating a tokenizer for C++?

I recent added source file parsing to an existing tool that generated output files from complex command line arguments. The command line arguments got to be so complex that we started allowing them ...
11
votes
10answers
919 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 you ever directly ...
10
votes
4answers
6k views

Splitting comma separated string in a PL/SQL stored proc

I've CSV string 100.01,200.02,300.03 which I need to pass to a PL/SQL stored procedure in Oracle. Inside the proc,I need to insert these values in a Number column in the table. For this, I got a ...
9
votes
4answers
475 views

What Javascript constructs does JsLex incorrectly lex?

JsLex is a Javascript lexer I've written in Python. It does a good job for a day's work (or so), but I'm sure there are cases it gets wrong. In particular, it doesn't understand anything about ...
8
votes
1answer
130 views

Class hierarchy of tokens and checking their type in the parser

I'm attempting to write a reusable parsing library (for fun). I wrote a Lexer class which generates a sequence of Tokens. Token is a base class for a hierarchy of subclasses, each representing ...
8
votes
5answers
1k 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) { int startpos ...
7
votes
4answers
224 views

what does regular in regex/“regular expression” mean?

What does the "regular" in the phrase "regular expression" mean? I have heard that regexes were regular at one time, but no more
7
votes
4answers
195 views

Is there anything like PPI or Perl::Critic for C?

PPI and Perl::Critic allow programmers to detect certain things in the syntax of their Perl programs. Is there anything like it that will tokenize/parse C and give you a chance to write a script to ...
7
votes
5answers
3k views

tokenize a string keeping delimiters in Python

Is there any equivalent to str.split in Python that also returns the delimiters? I need to preserve the whitespace layout for my output after processing some of the tokens. Example: >>> ...
7
votes
3answers
6k views

How Do I Tokenize This String in Ruby?

I have this string: %{Children^10 Health "sanitation management"^5} And I want to convert it to tokenize this into an array of hashes: [{:keywords=>"children", :boost=>10}, {:keywords=>"health", ...
6
votes
3answers
409 views

What is the most accurate open-source tool for sentence splitting?

I need to split text into sentences. I'm currently playing around with OpenNLP's sentence detector tool. I've also heard of NLTK and Stanford CoreNLP tools. What is the most accurate English sentence ...
6
votes
2answers
527 views

Input line by line from an input file and tokenize using strtok() and the output into an output file

What I am trying to do is to input a file LINE BY LINE and tokenize and output into an output file.What I have been able to do is input the first line in the file but my problem is that i am unable to ...
6
votes
3answers
670 views

Google-like search query tokenization & string splitting

I'm looking to tokenize a search query similar to how Google does it. For instance, if I have the following search query: the quick "brown fox" jumps over the "lazy dog" I would like to have a ...
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 ...
6
votes
6answers
3k views

Best way to parse Space Separated Text

I have string like this /c SomeText\MoreText "Some Text\More Text\Lol" SomeText I want to tokenize it, however I can't just split on the spaces. I've come up with somewhat ugly parser that works, ...
5
votes
2answers
499 views

Splitting text to sentences and sentence to words: BreakIterator vs regular expressions

I accidentally answered a question where the original problem involved splitting sentence to separate words. And the author suggested to use BreakIterator to tokenize input strings and some people ...
5
votes
4answers
222 views

Syntax-aware substring replacement

I have a string containing a valid Clojure form. I want to replace a part of it, just like with assoc-in, but processing the whole string as tokens. => (assoc-in [:a [:b :c]] [1 0] :new) [:a ...
5
votes
5answers
3k views

how to split a string in shell and get the last field

suppose I have the string "1:2:3:4:5" and I want to get its last field ("5" in this case). how do I do that using Bash? I tried cut, but I don't know how to specify the last field with -f.
5
votes
3answers
474 views

Problem with using getline and strtok together in a program

In the below program , I intend to read each line in a file into a string , break down the string and display the individual words.The problem I am facing is , the program now outputs only the first ...
5
votes
1answer
584 views

Parsing/Tokenizing a String Containing a SQL Command

Are there any open source libraries (any language, python/PHP preferred) that will tokenize/parse an ANSI SQL string into its various components? That is, if I had the following string SELECT ...
5
votes
8answers
245 views

Parsing a User's Query

So here's what I'm looking to achieve. I would like to give my users a single google-like textbox where they can type their queries. And I would like them to be able to express semi-natural language ...
4
votes
1answer
167 views

Tokenizing complex input

I'm attempting to tokenize the following input in Python: text = 'This @example@ is "neither":/defn/neither complete[1] *nor* trite, *though _simple_*.' I would like to produce something like the ...
4
votes
3answers
124 views

parse plain python list of double

What's the best way to parse a line like this (the number of elements is not fixed): [ 0.0125, 2.9518e+02, 1.2833e+00, -3.5302e-04, 1.2095e+01, 1.0858e-01, 1.2112e-04, 1.1276e+03 ] # ...
4
votes
1answer
317 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
1answer
440 views

Replacing all tokens based on properties file with ANT

I'm pretty sure this is a simple question to answer and ive seen it asked before just no solid answers. I have several properties files that are used for different environments, i.e xxxx-dev, ...
4
votes
3answers
122 views

Java. Arithmetic operations.tokenized. How?

Who can explain or give a good reference for understanding this example: int a=1; int b=2; System.out.println(a---b); //correct System.out.println(a- -b); //correct System.out.println(a--b); //wrong ...
4
votes
2answers
151 views

Indexing n-word expressions as a single term in Lucene

I want to index a "compound word" like "New York" as a single term in Lucene not like "new", "york". In such a way that if someone searches for "new place", documents containing "new york" won't ...
4
votes
1answer
548 views

Tokenizing Twitter Posts in Lucene

My question in a nutshell: Does anyone know of a TwitterAnalyzer or TwitterTokenizer for Lucene? More detailed version: I want to index a number of tweets in Lucene and keep the terms like @user or ...
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
4answers
375 views

How to find position of nth token

We have a string that has a maximum limit of 20 words. If the user enters something that is more than 20 words, we then need to truncate the string at its 20th word. How can we automate this? We are ...
4
votes
3answers
13k views

Tokenizing Error: java.util.regex.PatternSyntaxException, dangling metacharacter '*'

I am using split() to tokenize a String separated with * following this format: name*lastName*ID*school*age % name*lastName*ID*school*age % name*lastName*ID*school*age I'm reading this from a file ...
4
votes
5answers
543 views

How do I parse a token from a string in C?

How do i parse tokens from an input string. For example: char *aString = "Hello world". I want the output to be: "Hello" "world"
4
votes
6answers
2k views

Splitting strings in python

I have a string which is like this: this is [bracket test] "and quotes test " I'm trying to write something in Python to split it up by space while ignoring spaces within square braces and quotes. ...
3
votes
3answers
78 views

String to Sequence of Tokens

I'm parsing command sequence strings and need to convert each string into a string[] that will contain command tokens in the order that they're read. The reason being is that these sequences are ...
3
votes
1answer
71 views

Tokenize .htaccess files

Bet you didn't see this coming? ;) So, a project of mine requires that I specifically read and make sense out of .htaccess files. Sadly, searching on Google only yields the infinite woes of people ...
3
votes
2answers
133 views

Search Query Tokenizer

We're trying to add a simple search functionality to our website that lists restaurants. We try to detect the place name, location, and place features from the search string, something like "cheap ...
3
votes
3answers
215 views

Tokenizing a custom text file format file using C#

I want to parse a text-based file format that has a slightly quirky syntax. Here's a few valid example lines: <region>sample=piano C3.wav key=48 ampeg_release=0.7 // a comment here ...
3
votes
1answer
143 views

Natural language processing to recognise numerical data

My requirement is to recognize and extract numerical data from a natural language sentence (English only) in response to queries. Platform is Java. For example if the user query is "What is the height ...
3
votes
2answers
152 views

How do I loop over several files, keeping the base name for further processing?

I have multiple text files that need to be tokenised, POS and NER. I am using C&C taggers and have run their tutorial, but I am wondering if there is a way to tag multiple files rather than one by ...
3
votes
2answers
348 views

What are all the Japanese whitespace characters?

I need to split a string and extract words separated by whitespace characters.The source may be in English or Japanese. English whitespace characters include tab and space, and Japanese text uses ...
3
votes
1answer
377 views

Why is my string parsed differently via strtok on Windows and Linux?

In my program I'm cutting my char* with strtok. When I'm checking on Windows it's cut like I want, but when I'm doing the same thing on Linux, it's doing it wrong. Example : Windows: my char* ...
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
1answer
745 views

array or list into Oracle using cfprocparam

I have a list of values I want to insert into a table via a stored procedure. I figured I would pass an array to oracle and loop through the array but I don't see how to pass an array into Oracle. ...
3
votes
8answers
370 views

Can Regular Expressions Achieve This?

I'm trying to split a string into tokens (via regular expressions) in the following way: Example #1 input string: 'hello' first token: ' second token: hello third token: ' Example #2 input string: ...

1 2 3 4 5