| 66 | } |
| 67 | |
| 68 | UString remove(const UStringView str, size_t offset, size_t count) |
| 69 | { |
| 70 | auto u32str = to_u32string(str); |
| 71 | |
| 72 | u32str.erase(offset, count); |
| 73 | |
| 74 | return to_ustring(u32str); |
| 75 | } |
| 76 | |
| 77 | U32String remove(const U32StringView str, size_t offset, size_t count) |
| 78 | { |