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 using "abc" as a a delimiter? Therefore returning:

results would be the string "xxaxxxx" and "xxxxbxxxcxxx"

I am aware of boost::split using the "is_any_of" predicate, however invoking "is_any_of("abc")" would result in splitting the string at the single character 'a', 'b', and 'c' as well, which is not what i want.

any help would be appreciated.

thank you

link|improve this question

78% accept rate
You should be able to use some combination of equals and the string value to be used as delimiter, but the specifics elude me right now. – K-ballo Sep 15 '11 at 20:21
possible duplicate of Split on substring – Cubbi Sep 15 '11 at 21:09
feedback

2 Answers

up vote 1 down vote accepted

split_regex as suggested by @Mythli is fine. If you don't want to deal with regex, you can use ifind_all algo, as is shown in this example. You receive iterator_range (begin/end) of all occurrences of you delimiter. Your tokens are between them (and at the beginning and end of string).

link|improve this answer
Thanks, this solution fit my needs perfectly. – ahenderson Sep 16 '11 at 15:05
feedback

Yes there is a way (this is a way I know, maybe there is a better way) Use boost::algorithm::split_regex to split character sequences where delimiters are regular expressions.

Example:

vector< string > result;
boost::algorithm::split_regex( result, str, regex( "^((?!abc)*abc(?!abc)*)*$" ) ) ;
copy( result.begin(), result.end(), ostream_iterator<string>( cout, "\n" ) ) ;
link|improve this answer
Thanks, this solution works, however it requires boost to be built. Currently I am using header files only. – ahenderson Sep 16 '11 at 15:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.