which function is used to split the string in cpp?
Answers
Answered by
1
Explanation:
boost::split in C++ library
This function is similar to strtok in C. Input sequence is split into tokens, separated by separators. Separators are given by means of the predicate. Application : It is used to split a string into substrings which are separated by separators.
Answered by
0
Answer:
This function is similar to strtok in C. Input sequence is split into tokens, separated by separators. Separators are given by means of the predicate. Application : It is used to split a string into substrings which are separated by separators.
Hope it helps and follow me
Similar questions