Tagged Questions
1
vote
0answers
59 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
2answers
59 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
82 views
solr : how to boost query term after tokenizer
If the query word is "ABCD", then after being tokenized it is "A" "BC" "D". I want to boost term "BC", so the query word is like this:
A BC^10 D" and phrase query "ABCD"
All query words users typing ...
5
votes
3answers
300 views
Boost tokenizer to treat quoted string as one token
Is there a way to make Boost tokenizer to split below string without splitting quoted part?
string s = "1st 2nd \"3rd with some comment\" 4th";
Exptected output:
1st
2nd
3rd with some comment
4th
1
vote
1answer
247 views
Boost.Tokenizer for quotation marks and parentheses
I'd like to split a string into tokens using Boost.Tokenize. It is required that text in quotes or parentheses is a single whole token. More specifically, I need split a line like
"one (two),three" ...
0
votes
2answers
181 views
set precision when push_back on Vector
I'm reading from a CSV, line by line and tokenizing each comma separated value. each token is a string type. and I'm putting it into a vector of type float. In the example below, if for example if the ...
1
vote
1answer
2k views
Boost::tokenizer comma seperated (c++)
Should be an easy one for you guys.....
I'm playing around with tokenizers using Boost and I want create a token that is comma seperated. here is my code:
string s = "this is, , , a test";
...
4
votes
2answers
2k views
Boost::Split using whole string as delimiter
I would like to know if there is a method using boost::split to split a string using whole strings as a delimiter. For example:
str = "xxaxxxxabcxxxxbxxxcxxx"
is there a method to split this string ...
2
votes
3answers
335 views
Identifying the position in the original string from a given Boost token_iterator
If a string has been processed using a Boost tokenizer is it possible to get the position in the original string that a given token iterator is pointing to:
boost:tokenizer<> tok( "this is the ...
1
vote
1answer
235 views
Tokenize text into type,string pairs
I am looking for a way to tokenize a string and produce a list of tokens and token types. Before I waste my effort I'd like to know if boost can already do what I want.
I want a function with a ...
1
vote
3answers
2k views
boost regex tokenizer and newline
I'm currently trying to split up a text file into a vector of strings whenever a newline is encountered. Previously I have used boost tokenizer to do this with other delimiter characters but when I ...
0
votes
2answers
208 views
Regex tokenizing with Boost only getting last letters of words
I am trying to parse a simple sentence structure with Boost. This is my first time using Boost, so I could be doing this completely wrong. What I want to do is only accept strings in this format:
...
2
votes
1answer
3k views
C++ Boost: Split String
How can I split a string with Boost with a regex AND have the delimiter included in the result list?
for example, if I have the string "1d2" and my regex is "[a-z]" I want the results in a vector ...
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 ...
4
votes
3answers
3k views
Using escaped_list_separator with boost split
I am playing around with the boost strings library and have just come across the awesome simplicity of the split method.
string delimiters = ",";
string str = "string, with, comma, delimited, ...
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 ...
1
vote
3answers
285 views
Reversed offset tokenizer
I have a string to tokenize. It's form is HHmmssff where H, m, s, f are digits.
It's supposed to be tokenized into four 2-digit numbers, but I need it to also accept short-hand forms, like sff so it ...