Skip to content
Snippets Groups Projects
Commit faa8cef7 authored by Adrien Béraud's avatar Adrien Béraud
Browse files

string utils: add string_replace

Change-Id: I86a2b1564be127f70dd991b86fe0b14440cee299
parent 49541d10
Branches
No related tags found
No related merge requests found
......@@ -121,4 +121,13 @@ split_string_to_unsigned(const std::string &s, char delim)
return result;
}
void string_replace(std::string& str, const std::string& from, const std::string& to)
{
size_t start_pos = 0;
while ((start_pos = str.find(from, start_pos)) != std::string::npos) {
str.replace(start_pos, from.length(), to);
start_pos += to.length(); // Handles case where 'to' is a substring of 'from'
}
}
} // namespace jami
......@@ -19,8 +19,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef STRING_UTILS_H
#define STRING_UTILS_H
#pragma once
#include <string>
#include <vector>
......@@ -67,6 +66,6 @@ split_string(const std::string& s, char sep);
std::vector<unsigned>
split_string_to_unsigned(const std::string& s, char sep);
} // namespace jami
void string_replace(std::string& str, const std::string& from, const std::string& to);
#endif
} // namespace jami
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment