Tokenizing is the act of splitting a string into discrete elements called tokens.
145
votes
24answers
159k 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++?
56
votes
8answers
50k 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 ...
3
votes
5answers
20k views
How to best split csv strings in oracle 9i
I want to be able to split csv strings in Oracle 9i
I've read the following article
http://www.oappssurd.com/2009/03/string-split-in-oracle.html
But I didn't understand how to make this work.
Here ...
97
votes
6answers
47k views
3
votes
4answers
4k views
how to convert csv to table in oracle
How can I make a package that returns results in table format when passed in csv values.
select * from table(schema.mypackage.myfunction('one, two, three'))
should return
one
two
three
I tried ...
30
votes
2answers
12k 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 ...
47
votes
9answers
36k 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?
1
vote
2answers
1k views
SQL query to translate a list of numbers matched against several ranges, to a list of values
I need to convert a list of numbers that fall within certain ranges into a list of values, ordered by a priority column. The table has the following values:
| YEAR | R_MIN | R_MAX | VAL | PRIO |
...
6
votes
4answers
19k views
Is there a function to split a string in plsql?
I need to write a procedure to normalize a record that have multiple tokens concatenated by one char, I need to obtain these tokens splitting the string and insert each one as a new record in a table. ...
6
votes
2answers
16k 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 I do that? I know I ...
13
votes
5answers
1k 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 ...
9
votes
8answers
68k 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 ...
3
votes
4answers
6k views
Split column to multiple rows
I have table with a column that contains multiple values separated by comma (,) and would like to split it so I get earch Site on its own row but with the same Number in front.
So my select would ...
1
vote
1answer
640 views
Generating a custom Tokenizer for new TokenStream API using JFlex/ Java CC
We are currently using Lucene 2.3.2 and want to migrate to 3.4.0 . We have our own custom Tokenizer generated using Java CC which has been in use ever since we started using Lucene and we want to ...
3
votes
6answers
24k views
Convert comma separated string to array in PL/SQL
How do I convert a comma separated string to a array?
I have the input '1,2,3' , and I need to convert it into an array.
10
votes
2answers
2k 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 ...
11
votes
5answers
26k 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 ...
6
votes
2answers
617 views
Division/RegExp conflict while tokenizing Javascript
I'm writing a simple javascript tokenizer which detects basic types: Word, Number, String, RegExp, Operator, Comment and Newline. Everything is going fine but I can't understand how to detect if the ...
2
votes
2answers
8k views
Using Boost Tokenizer escaped_list_separator with different parameters
Hello i been trying to get a tokenizer to work using the boost library tokenizer class.
I found this tutorial on the boost documentation:
http://www.boost.org/doc/libs/1 _36 ...
15
votes
5answers
3k views
Tokenize a string and include delimiters in C++
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
5answers
23k 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 ...
12
votes
2answers
6k 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 ...
22
votes
4answers
1k 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 ...
4
votes
5answers
9k views
C++ tokenize a string using a regular expression
I'm trying to learn myself some C++ from scratch at the moment.
I'm well-versed in python, perl, javascript but have only encountered C++ briefly, in a
classroom setting in the past. Please ...
6
votes
3answers
26k 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 ...
5
votes
2answers
314 views
How to tokenzie (words) classifying punctuation as space
Based on this question which was closed rather quickly:
hey guys im trying to create a program to read a users input then break the array into seperate words are my pointers all valid ?
Rather than ...
3
votes
1answer
1k 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
7answers
18k views
Tokenizing strings in c
I have been trying to tokenize a string using SPACE as delimiter but it doesn't work. Does any one have suggestion on why it doesn't work?
Edit: tokenizing using:
strtok(string, " ");
the code is ...
2
votes
1answer
1k views
RegEx Tokenizer to split a text into words, digits and punctuation marks
What I want to do is to split a text into his ultimate elements.
For example:
from nltk.tokenize import *
txt = "A sample sentences with digits like 2.119,99 or 2,99 are awesome."
...
1
vote
5answers
5k views
Does PL/SQL have an equivalent StringTokenizer to Java's?
I use java.util.StringTokenizer for simple parsing of delimited strings in java. I have a need for the same type of mechanism in pl/sql. I could write it, but if it already exists, I would prefer to ...
-1
votes
1answer
517 views
How to make the tokinezer detect empty spaces while using strtok()
I am designing a c++ program, somewhere in the program i need to detect if there is a blank(empty token) next to the token used know eg.
if(token1==start)
{
token2=strtok(NULL," ");
...
19
votes
3answers
2k 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 ...
13
votes
6answers
2k 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 ...
14
votes
2answers
2k 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 ...
20
votes
7answers
37k 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.
9
votes
6answers
2k 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?
8
votes
3answers
9k 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}, ...
5
votes
3answers
545 views
Basic NLP in CoffeeScript or JavaScript — Punkt tokenizaton, simple trained Bayes models — where to start?
My current web-app project calls for a little NLP:
Tokenizing text into sentences, via Punkt and similar;
Breaking down the longer sentences by subordinate clause (often it's on commas except when ...
5
votes
4answers
13k 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 deprecated, and I've found ...
3
votes
4answers
2k 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
828 views
Is there a tokenizer for a cpp file
I have a cpp file with a huge class implementation. Now I have to modify the source file itself.
For this, is there a library/api/tool that will tokenize this file for me and give me one token each ...
6
votes
2answers
1k views
A string tokenizer in C++ that allows multiple separators [duplicate]
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 ...
6
votes
6answers
5k 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, ...
12
votes
1answer
393 views
Tokenization of Arabic words using NLTK
I'm using NLTK word_tokenizer to split a sentence into words.
I want to tokenize this sentence:
في_بيتنا كل شي لما تحتاجه يضيع ...ادور على شاحن فجأة يختفي ..لدرجة اني اسوي نفسي ادور شيء
The code ...
8
votes
12answers
3k 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 ...
5
votes
1answer
292 views
Is there way to boost original term more while using Solr synonyms?
For example I have synonyms
laptop,netbook,notebook
in index_synonyms.txt
When user search for netbook I want to boost original text more then expanded by synonyms?
Is there way to specify this in ...
3
votes
3answers
718 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 ...
1
vote
1answer
712 views
Android and the CommaTokenizer
I need a Tokenizer (for the AutoCompleteTextview) which can do the following:
Two words must be recognized as such when separated by a blank character
Two words must also be recognized as such when ...
7
votes
1answer
28k views
Split string with powershell and do something with each token
I want to split each line of a pipe on spaces, and then print each token on it's own line.
I realise that I can get this result using:
(cat someFileInsteadOfAPipe).split(" ")
But I want more ...
4
votes
4answers
4k 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 word a token, as ...