partitions a string into several parts and returns a list of these parts
None
This function partitions the specified string into several parts. The separators are not removed but start each part.
The function returns a list of the parts.
std::split | splits a string into several parts and returns a list of these parts |
std::split_into_lines | |
std::join | concatenates the list items using the specified separator |