Tagged Questions
1
vote
2answers
62 views
Advanced tokenizer for a complex math expression
I would like to tokenize a string that consists of integers,floats, operators, functions, variables and parentheses. The following example should brighten the essence of problem:
Current state:
...
1
vote
3answers
52 views
Tokenizer/Split in c#?
I am trying to turn this from java to C# and have done almost all of it except the tokenizer. I know that you use split in C# but I cannot seem to figure it out. The program needs to split up the ...
3
votes
2answers
56 views
Split string with alternative comma (,)
I know how to tokenize the String, but the Problem is I want to tokenize the as shown below.
String st = "'test1, test2','test3, test4'";
What I've tried is as below:
st.split(",");
This is ...
0
votes
0answers
63 views
How to use wikipediaTokenizer to token word between Angle brackets <>
I am new in using lucene wikipediaTokenizer. My input is a line from a xml file:
"<format>text/x-wiki</format>"
I want the output to be:
<format>
text
x
wiki
</format>
...
3
votes
1answer
72 views
Is it possible to search for words inside a Lucene index by part of speech
I have a large set of documents stored inside a Lucene index and I am using a customAnalyzer which basically does tokenization and stemming for the documents content.
Now, if I search inside the ...
0
votes
1answer
43 views
General tokenizer
I am looking for some libraries which would help me do the following:
For a given input text document:
1. Convert the document to lower case (Easy. Solved with toLowerCase function)
2. Remove symbols
...
0
votes
5answers
142 views
Effective way to build a list of tokens from multiple strings in Java
I'm looking for an efficient way to obtain a list of String tokens extracted from multiple Strings (e.g. with a whitespace separator).
Example:
String s1 = "My mom cook everyday";
String s2 = "I eat ...
1
vote
1answer
53 views
Is it possible to add elements to an array previously defined as string
I need to read a text file and store the text in the file in five different arrays. The text file contains questions, four options and the correct answer in one line. I used the scanner to read the ...
3
votes
2answers
83 views
How to make string formatting mechanism in Java?
I'm trying to make a string formatting mechanism, which pretty much looks like the Winamp Advanced Title Formatting.
I have some 'variables' (or metadata fields) bound to object properties, in the ...
-4
votes
2answers
97 views
Split the words using string tokenizer if it is followed by two or more space/whitespace in java? [duplicate]
In my string, i want to tokenize string on the basis of two or more spaces.
E.x.
String str = "I am Chaitanya Gadam. Split this string."
StringTokenizer tokenizer = new ...
-2
votes
1answer
34 views
signiture class [closed]
Im trying to build a method where inside my Signature method below,
I initialize an object's state,
open a document file,
process each line of the document file.
e.g.,
Signature(String ...
0
votes
0answers
57 views
Java StreamTokenizer - zero vs. dot
I work on project using Java StreamTokenizer and have a problem.
I have input file, which I need to parse. In that file occurs both zeros and dots. And any other numbers or characters, of course. I ...
0
votes
0answers
37 views
Is it possible to change the delimiter halfway through the tokenizing process?
This is a follow-up question of Scanner Vs StringTokenizer Vs String.split()
In the accepted answer, Neil Coffey says something about changing the the delimiter halfway through depending on a ...
4
votes
2answers
125 views
Java/clojure: Multiple character delimiter, and keep the delimiter
I'm working on a project in clojure, which can interop with any java classes, so the answer to my question could be for either java or clojure.
Basically I need to be able to split a string into ...
1
vote
3answers
223 views
Java Read How to read first word then the rest of an input
I'm having trouble figuring out how to read the rest of a input line. I need to token the first word then possibly create the rest of the input line as one whole token
public Command getCommand()
{
...
0
votes
0answers
60 views
InputMismatch in Scanner.nextInt()
I am using this method to read in a collection of ints and strings then converting the strings to numbers using the switch statement(as stated by my lecturer) and save it back into an array for ...
0
votes
1answer
47 views
Grabbing text inbetween specific HTML tags using Java switch statement
I'm trying to grab the text between <AU></AU> tags in a file, and then print out the results on a new line. I need to do this with a switch statements and a helper class called ...
0
votes
3answers
175 views
Grab word and character counts in string
I'm trying to write a super-efficient method that operates in two "modes" (WORD and CHARACTER) that accepts a String and tells me the number of words (separated by 1+ whitespaces) or characters ...
5
votes
4answers
119 views
Java Scanner Dilimiter
I'm using Scanner and a Delimiter to tokenize my .txt file (it's a homework that I've got to do). First version of the file looks like this:
5,5,5,6,5,8,9,5,6,8, good, very good, excellent, good
...
3
votes
2answers
67 views
Java disambiguation of unary prefix operators
How does the Java parser handle ambiguous unary operators?
For example, assuming you had int x declared somewhere, +--x is perfectly valid code. ---x is theoretically valid as well, but the compiler ...
1
vote
2answers
62 views
String split with regex
I want to take a string according to my regex in java. Suppose i have a String "R12T12W5P12T5L3"
. And now i want to have something like this : myStr[0]="R12T12",myStr[1]="W5P12",myStr[2]=T5L3. I want ...
1
vote
1answer
205 views
JQuery TokenInput not displaying search result
I am using jQuery Tokeninput to display the emails of user, Actually I am trying to invite users. When I click on the input text and type some email it always say no result even if that email exists.
...
0
votes
1answer
225 views
Android: split a string considering 2 separating characters
I have a string containing messages. The string looks like this:
bill:hello;tom:hi;bill:how are you?;tommy:hello!; ...
I need to split the string into several srings, on the characters : and ;.
For ...
3
votes
1answer
122 views
Is there any Java-based intelligent word tokenizer that makes tokens of adjacent words in a sentence?
I want to tokenize a sentence that has adjacent words, as following:
"This is a samplestring that Iwanttotokenize."
In above example, there are two cases "samplestring" & "Iwanttotokenize" where ...
0
votes
2answers
70 views
why StringTokenizer does not work properly for $$ as delimeter
I am using StringTokenizer to tokenize a string with $$ as delimeter but if my string is like $1$dga74 then it tokenize this from first $. Can any body tell me why this happens and what can I do to ...
0
votes
4answers
122 views
How to add delimiters from the StringTokenizers to a seperate string?
I am inputting a string and I want to add the delimeters in that string to a different string and I was wondering how you would do that. This is the code I have at the moment.
StringTokenizer ...
3
votes
2answers
628 views
Efficiently extracting numbers from a java string (already tried guava and regular expressions)
Trying to efficiently extract some numbers from a string and have tried
java.util.regex.Matcher
com.google.common.base.Splitter
The results were :
via Regular Expression: 24417 ms
via Google ...
0
votes
2answers
41 views
Tokens not constructing properly
im trying to tokenize text files using the following code:
String fileContent = "";
String fileContentTokens[];
try{
fileContent = new Scanner(new ...
0
votes
1answer
84 views
Java alternative to PHP Tokenizer
Is there any Java alternative to PHP Tokenizer?
http://php.net/manual/en/book.tokenizer.php
Edit: I mean Java class that parses Java like PHP Tokenizer parses PHP.
-1
votes
2answers
59 views
Moving from tokenizer to substring
I have this program working with tokenizer, but i was wondering how can i do this using substring.
what Im trying to do is have the user enter 14 numbers/characters.
and i want to get the input 1 by ...
-2
votes
1answer
304 views
How to use String tokenizer to remove the words from a list of words? [closed]
I have a list of words after Pos Tagging in Java. Now I want to remove particular words with specified tags.How to use string tokenizer to remove the tagged words?
such as to-PRP? and all words with ...
2
votes
3answers
755 views
Java Lucene NGramTokenizer
I am trying tokenize strings into ngrams. Strangely in the documentation for the NGramTokenizer I do not see a method that will return the individual ngrams that were tokenized. In fact I only see two ...
0
votes
2answers
150 views
Preserving line breaks and spacing in file IO
I am workig on a pretty neat problem challenge that involves reading words from a .txt file. The program must allow for ANY .txt file to be read, ergo the program cannot predict what words it will be ...
1
vote
1answer
57 views
Empty spaces in a List after tokenization
I have a list of words and after tokenization, I get some empty spaces in my list which I actually don't want. Suggestions please...
Sample String
String str = "3) type an \"l\" in the search field ...
0
votes
0answers
146 views
lingpipe - How to extract tokens and Named-entities into a single list
I am working on a project that needs to extract tokens from text. This tokens should also contain named entities.
For example, the text:
50 Cent is almost irrelevant to hiphop
my desired output
...
1
vote
3answers
245 views
String Tokenizer, delimiter
I am using this code:
StringTokenizer tokenizer=new StringTokenizer(line, "::");
to split the following String:
hi my name is visghal:: what is yor name name:: being thw simple my::: what is yor ...
1
vote
2answers
88 views
OO strategy to match a set of tokens to an appropriate method / constructor
This question isn't specifically about performing tokenization with regular expressions, but more so about how an appropriate type of object (or appropriate constructor of an object) can be matched to ...
1
vote
5answers
544 views
Tokenizing a String with tab delimiter in Java while skipping some tokens
I have a huge file with data (~8Gb / ~80 Million records). Every record has 6-8 attributes which are split by a single tab. I would like for starters to copy some given attributes in another file. So ...
1
vote
2answers
317 views
splitting a comma delimited string with escaping quotes
I see that there are several similar questions, but I have not found any of the answers satisfactory. I have a comma delimited file where each line looks something like this:
4477,52544,,,P,S, ...
1
vote
2answers
125 views
Leading Space when using .split
I have an assignmnt to modify a program from my text book. The program takes an input string from the user and then responds with how many words were enterd. My assignment is to change this to do a ...
0
votes
2answers
207 views
Lexing in Java with recursive regex
I'm parsing text using Java. I've defined a grammar below:
Start := "(\\<)"
Stop := "(\\>)"
Var = "(\\w*)";
Cons = "([0-9]*)";
Type1 := Start ((Var | Cons) | TypeParent) (Type1 ((Var | Cons) | ...
1
vote
2answers
194 views
How does java.util.Scanner work?
I have a simple language which consists of patterns like
size(50*50)
start(10, 20, -x)
forward(15)
stop
It's an example of turtle-drawing language. I need to properly tokenize it. The above is a ...
2
votes
1answer
110 views
Tokenize multiple String in array if the input sometimes doesn't have token
I have input in this form
test@test.com
and\or in this form
test@test.com;test2@test.com
or
test@test.com;test2@test.com;test3@test.com
I should tokenize all, in a String array that contains ...
0
votes
2answers
185 views
Seperate text in java with backslash-zero as delimiter
Suppose I have a binary file that has this content:
abc\0def\0ghi\0
The content is already read and stored in a string variable s. How should I extract the components "abc", "def", "ghi" into ...
0
votes
1answer
244 views
Custom tokenizer for apache lucene 4
I have a tokenized text(splitted sentences and splitted words). And going to create Apache Lucene index, based on this structure. What is the easiest way to extend or replace a standart tokenizer to ...
1
vote
2answers
260 views
Android StringTokenizer - reading blank values
I have pipe delimited strings containing id, latitude, longitude, refname, userid, username:
1390|-32.5506782531738|18.9797592163086|Hardie - Vrede 4|21|Hardie van der Merwe
...
5
votes
2answers
268 views
Tokenize byte array
I have a array of raw bytes which i need to tokenize to a list of byte array in java. Explained better by the following method declaration.
public static List<byte[]> splitMessage(byte[] ...
1
vote
1answer
190 views
How to tokenize Chinese language document
I will be getting document written in Chinese language for which I have to tokenize and keep it in database table. I was trying the CJKBigramFilter of Lucene but all it does is unite the 2 character ...
0
votes
3answers
257 views
Java NLP: Extracting Indicies When Tokenizing Text
When tokenizing a string of text, I need to extract the indexes of the tokenized words. For example, given:
"Mary didn't kiss John"
I would need something like:
[(Mary, 0), (did, 5), (n't, 8), ...
0
votes
0answers
127 views
Tokenize Korean text
Please help me out on how to tokenize Korean text in java. I am trying to use lucene but everytime i am reading from a file print it, instead of showing the Korean text and getting ???? as text.
...