Tokenizing is the act of splitting a string into discrete elements called tokens.
0
votes
1answer
91 views
Is there any way to “reconst” a nonconst char?
Say I have a char or a char array that is not consted. I modify it, etc.
Then I want to later turn off all modifications after.
Is there any way to reconst a char?
This question came when i was ...
2
votes
1answer
37 views
Search for name(text) with spaces in elasticsearch
Searching for names(text) with spaces in it, causing problem to me,
I have mapping similar to
"{"user":{"properties":{"name":{"type":"string"}}}}"
Ideally what it should return and rank results ...
0
votes
3answers
67 views
To tokenize terminals or write them into parser grammar?
Take a look at this: http://www.verilog.com/VerilogBNF.html
UNARY_OPERATOR and BINARY_OPERATOR overlap as tokens. so does OUTPUT_SYMBOL and LEVEL_SYMBOL. I'm sure there are others.
My tokenizer ...
0
votes
0answers
11 views
XSLT Tokenize giving error
Hope you are doing fine
I've a simple csv and I wanted to convert it into an array using XSLT
Here is the xml that has csv
<xsd:element name="simpleCSVString">
<xsd:complexType>
...
1
vote
3answers
40 views
Python - tokenizing, replacing words
I'm trying to create something like sentences with random words put into them. To be specific, I'd have something like:
"The weather today is [weather_state]."
and to be able to do something like ...
0
votes
0answers
7 views
Orion Editor tokenizer
I have a tokenizer in ace editor which lets me move forward and backward in ace editor as in this jsfiddle http://jsfiddle.net/samarjit/W3FQz/.
editor.selection.on("changeSelection", function(){
var ...
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
53 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
57 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 ...
1
vote
2answers
62 views
Parse a string to int
I'm pretty new to coding, and I was hoping someone could help me out? I'm trying to read in a line of space delimited integers and parse them into (ultimately into a linked list) a vector.
so once i ...
0
votes
0answers
45 views
TIToken crashes as soon as I type some letters in the textfield
I downloaded TIToken (https://github.com/thermogl/TITokenField) and integrated it in my app. All works, but when I type a letter in the textfield, the app crashes:
* Terminating app due to ...
0
votes
5answers
85 views
How do I separate strings like this?
I get an NSString containing different emails concatenated together like
def_ghi@hotmail.com_abc_1@me.com
Each email is separated by an underscore.The problem is if I try to separate the string ...
1
vote
1answer
67 views
Using a tokenizer in C++ from a file?
I am working on an assignment that requires me to read in several lines of text from a file, and at the end use qsort to sort the words used alphabetically and display a count of how many times each ...
0
votes
1answer
103 views
split a row in a table into multiple rows by parsing the string value in the column
I need to split a row into multiple rows.
sample value in a column is like this.
Message for status: warnings: [w1,w2] | errors: [e1,e2] | other_errors: [e3]
Above total message is in one column ...
1
vote
1answer
28 views
Tokenize String for words including non-word characters
I want to tokenize Twitter messages including hash- and cash-tags. A correct example for tokenization would be like this:
"Bought $AAPL today,because of the new #iphone".match(...);
>>>> ...
1
vote
2answers
34 views
Parse text to replace quotes and nested quotes
Using python, I would like "educate" quotes of a a plain text input and turn them into the Context syntax. Here is a (recursive) example:
original text:
Using python, I would like "educate" quotes ...
1
vote
0answers
63 views
boost::iostreams<stream_buffer> with tokenizer without unnecessary copying
I'm trying to create a string I can tokenise, from a file. What works is
boost::iostreams::stream_buffer<boost::iostreams::mapped_file_source> file("file.txt");
...
0
votes
1answer
13 views
How to stop . being treated as a separator in SQLite FTS4
I want to be able to search for numbers like 2.3 using FTS4 in SQLite, but the . is being treated as a token boundary. Short of writing a full bespoke tokenizer is there any other way of excluding the ...
0
votes
1answer
59 views
excel formula help to split complex names
I have been tasked with some string manipulation and today must be my bad head day as it is proving more difficult than I expected.
I have to take the initials of the first and second and third name ...
1
vote
1answer
70 views
Parsing comments and strings in source code
I'm designing and implementing a scripting language, and for the "reading" stage I'm taking the time-tested and straightforward approach of splitting the code up into tokens (lexical analysis) ...
0
votes
0answers
7 views
Parsing content from tokenized HTML
One of the cells in a table I am displaying has a tokenized string specified in the following manner -
<logic:iterate id="appointment" name="appointments" scope="request">
...
<td ...
0
votes
0answers
65 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
74 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
0answers
12 views
What is causing MFC application to stop
I have inherited a Visual C++ 6.0 application and am trying to add some tokenizing code to it. I have already discovered that CString.Tokenize does not work for VC++ 6.0, so I am going back to basic ...
0
votes
0answers
47 views
How to tokenize a sentence with a linked list in MIPS?
I am currently practicing for a final exam and came across a practice question I cannot quite solve and there's no solution. I was hoping someone might be able to point me in the right direction as it ...
0
votes
0answers
18 views
Text Editor interface: parsing/tokenizing
I need help understanding how text editors process input when determining the display of an interface feature.
For instance, Notepad++ 's indent guide: would you say that the user input is parsed ...
10
votes
2answers
546 views
Writing a tokenizer in Python
I want to design a custom tokenizer module in Python that lets users specify what tokenizer(s) to use for the input. For instance, consider the following input:
Q: What is a good way to achieve ...
0
votes
0answers
58 views
Getting Java Lucene analyzer accent list
I want to get the list of accents that Lucene analyzer remove from tokenStream when tokenize it. For example, it remove character like '.' and '|'. I want to get the list of this characters. How can I ...
0
votes
0answers
20 views
Tokenize not working on DOMXPath query
I'm trying to Tokenize (explode) a string result via a DOMXPath.
$file = new DOMDocument;
...
0
votes
1answer
45 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
145 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 ...
0
votes
1answer
38 views
Python3 re.split() via character which is not in special substring
I'm trying to parse and validate language. I want to tokenize input to check grammar.
My input string is:
something > 0 AND (something CONTAINS "substr" OR NOT something)
if i did this:
tokens ...
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 ...
-2
votes
2answers
62 views
Tokenize text you read from file according to rules
I have an assignment to write a code, in which it should read a text file, then write an output file displaying the frequencies of each parameter in the code, i.e. "integers=2, keywords=13, ...
0
votes
2answers
64 views
C++/Boost split a string on more than one character
This is probably really simple once I see an example, but how do I generalize boost::tokenizer or boost::split to deal with separators consisting of more than one character?
For example, with "__", ...
1
vote
1answer
102 views
C++ Templates Angle Brackets Pitfall - What is the C++11 fix?
In C++11, this is now valid syntax:
vector<vector<float>> MyMatrix;
whereas previously, it had to be written like this (notice the space):
vector<vector<float> > MyMatrix;
...
-4
votes
2answers
103 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
35 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 ...
1
vote
2answers
155 views
How to read a file with mixed binary and ASCII data using C++
I need to read a file with mixed binary and ASCII data using C++ and pure std(no Boost). This data usually contains a mix of nested binary and ASCII headers, followed by binary data and comma ...
-2
votes
4answers
67 views
#define f(x1,x2) x1##x2 void main() { int i; int s1,s10,s100,s1000; for(i=1;i<5;i*=10) printf(“%d ”,(f(s,i)=i)); }
Here is a piece of code. But i know this will clearly give an error "si undeclared" . Is there any solution for i is to be replaced with its value while token pasting
#define f(x1,x2) x1##x2
void ...
0
votes
2answers
169 views
C# String tokenization
I write a math C# application where user can define functions in a predefined way, such as
COS({x}+3*(2+SQRT({x})))
For the evaluation I use the Shunting-Yard algorithm. I have a function to ...
0
votes
0answers
19 views
Is there a way to retrieve user specific information when running a cloud project locally?
We have a few values which are user specific in our cscfg files like service bus namespaces, usernames and passwords etc. I wonder if we can retrieve those values upon build time when running the ...
1
vote
2answers
56 views
How do you retrieve the first n lines of a file? (php)
$fileName = file ("gstbook.txt");
$rows = count ($fileName);
// $Char is the string that will be added to the file.
if ($Char != '')
{
$Char = str_replace ("\n","<br>",$Char);
$Char = ...
0
votes
1answer
51 views
tokenize two times a csv file
I'm using strtok() in C to parse a csv string.
My example string is:
str= "name1 secondname1 cin,name2 secondname2 cin"
I first use strtok with the delimiter "," and second I delimit the string ...
0
votes
3answers
109 views
String gets chopped when converted to char* c++
As suggested by the title I'm having some trouble converting a string to char array.
First off let me clear the reasons why I'm needing to do this, because if my approach is wrong, I'll gladly take a ...
0
votes
2answers
440 views
How to get rid of punctuation using NLTK tokenizer?
I'm just starting to use NLTK and I don't quite understand how to get a list of words from text. If I use nltk.word_tokenize(), I get a list of words and punctuation. I need only the words instead. ...
0
votes
1answer
61 views
lucene wikipedia querying
I'm using lucene to query from wiki dump and get the categories out. So, I get the relevant documents and for every document, I call the below function.
static List<String> ...
2
votes
9answers
284 views
How split a file in words in unix command line?
I'm doing a faster tests for a naive boolean information retrival system, and I would like use awk, grep, egrep, sed or thing similiar and pipes for split a text file into words and save them into ...
0
votes
1answer
64 views
perl stream file for regex token including scanned tokens
I am trying to stream a file in perl and tokenize the lines and include the tokens.
I have:
while( $line =~ /([\/][\d]*[%].*?[%][\d]*[\/]|[^\s]+|[\s]+)/g ) {
my $word = $1;
#...
}
But it ...
