D
Digital Puer
I have the following std::string contents:
"I want to go"--and with emphasis--"right now," he said.
I would like to split this string into six substrings:
"I want to go"
--
and with emphasis
--
"right now,"
he said.
Is there a way to do this splitting? I am on Linux and can use
Boost libraries (I know there is some regex library, but I have never
used it).
I can potentially use another language. Does Python or Java have
support for this?
"I want to go"--and with emphasis--"right now," he said.
I would like to split this string into six substrings:
"I want to go"
--
and with emphasis
--
"right now,"
he said.
Is there a way to do this splitting? I am on Linux and can use
Boost libraries (I know there is some regex library, but I have never
used it).
I can potentially use another language. Does Python or Java have
support for this?