Tagged Questions
0
votes
1answer
57 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
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 ...
5
votes
1answer
495 views
Retrieve analyzed tokens from ElasticSearch documents
Trying to access the analyzed/tokenized text in my ElasticSearch documents.
I know you can use the Analyze API to analyze arbitrary text according your analysis modules. So I could copy and paste ...
0
votes
3answers
43 views
How to parse the numbers from the text and display it in textBox? c#
I have a string with the following text:
:0c4b7fcdffc38322555a9e35c22c9469:Nick:194176015020283762507:
How do I parse the final number? i.e.:
194176015020283762507
0
votes
1answer
142 views
Tokenization of text with jQuery
I have a neat challenge and can't complete it with myself!
To everyone who don't know what tokenization is, see here: http://en.wikipedia.org/wiki/Tokenization
Goal
Process text word-for-word and ...
1
vote
1answer
252 views
XSLT tokenize a string that's distributed across child elements
I have the feeling there's an obvious solution out there, but I can't think of it. Using XSLT 2.0 I want to tokenize a string that's distributed across child elements, so it's something like
...
-2
votes
1answer
116 views
How to make text file (or other documents') parser? [closed]
I have following task to do: to fill spell check dictionary (simple txt file) I need parser
which should: - parse within text file (or another type of document), extract
each word and then create text ...
4
votes
1answer
295 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 ...
1
vote
4answers
142 views
For Java, there is a tokenizator that is matches exactly what I want?
I'm want to tokenize a text, but not separating only with whitespaces.
There some things like proper names that I want to set only one token (eg.: "Renato Dinhani Conceição"). Another case: ...
1
vote
1answer
131 views
Bi-directional Text Parsing Recommendations
I'm looking at the feasability of implementing a bi-directional text parsing framework to allow formatted text to be processed using a combination of common paradigms such as Markdown, BBCode, ...
3
votes
2answers
1k 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 ...
1
vote
4answers
2k views
Tokenize from a textfile reading into an array in C
How do you tokenize when you read from a file in C?
textfile:
PES 2009;Konami;DVD 3;500.25; 6
Assasins Creed;Ubisoft;DVD;598.25; 3
Inferno;EA;DVD 2;650.25; 7
char *tokenPtr;
fileT = ...
1
vote
1answer
3k views
Parsing data from txt file in J2ME
Basically I'm creating an indoor navigation system in J2ME. I've put the location details in a .txt file i.e.
Locations names and their coordinates.
Edges with respective start node and end node as ...