Skip to content

Commit f27c0d7

Browse files
committed
improved replace_char algorithm
1 parent 583f8a7 commit f27c0d7

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

utf8-string-lib/utf8_string.cpp

+13-3
Original file line numberDiff line numberDiff line change
@@ -170,9 +170,19 @@ namespace utf8
170170
std::basic_string<char> new_string{ };
171171
new_string.resize(old_string_size + new_symbol_size - old_symbol_info.Symbol_Size); // calculate & resize new string size
172172

173-
std::memcpy(new_string.data(), String.c_str(), replace_position); // copy bytes to a new string before idx
174-
std::memcpy((new_string.data() + replace_position), new_symbol.data(), new_symbol_size); // insert a new symbol by idx
175-
std::memcpy((new_string.data() + replace_position + new_symbol_size), (String.c_str() + replace_position + old_symbol_info.Symbol_Size), old_string_size - replace_position); // copy bytes after inserted symbol
173+
for (std::size_t i{}, counter{}; i < old_string_size;)
174+
{
175+
if (i == replace_position)
176+
{
177+
std::memcpy(new_string.data() + i, new_symbol.data(), new_symbol_size);
178+
counter += new_symbol_size;
179+
i += old_symbol_info.Symbol_Size;
180+
181+
continue;
182+
}
183+
184+
new_string[counter++] = String[i++];
185+
}
176186

177187
auto new_offset{ static_cast<std::ptrdiff_t>(new_symbol_size) - static_cast<std::ptrdiff_t>(old_symbol_info.Symbol_Size) };
178188
Recalculate_Symbols_Offset(idx + 1, new_offset);

0 commit comments

Comments
 (0)