Tagged Questions

3
votes
2answers
157 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
1answer
1k 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 ...
1
vote
3answers
126 views

Best method for tokenizing / extracting info from a string

I am trying to convert date-times that i am receiving into a particular format to insert into a MySQL database. The program is written in C++, and the following solution works but I feel it is ...
1
vote
3answers
6k views

Parsing string in Ruby

I have a pretty simple string I want to parse in ruby and trying to find the most elegant solution. The string is of format /xyz/mov/exdaf/daeed.mov?arg1=blabla&arg2=3bla3bla What I would like ...
1
vote
6answers
1k views

string slicing, php

is there a way to slice a string lets say i have this variable $output=Country=UNITED STATES (US) &City=Scottsdale, AZ &Latitude=33.686 &Longitude=-111.87 i want to slice it in a way i ...