| 4172 | } |
| 4173 | |
| 4174 | String String::replacen(const String &p_key, const String &p_with) const { |
| 4175 | return _replace_common(*this, p_key, p_with, true); |
| 4176 | } |
| 4177 | |
| 4178 | String String::replacen(const char *p_key, const char *p_with) const { |
| 4179 | return _replace_common(*this, p_key, p_with, true); |
no test coverage detected