| 4086 | } |
| 4087 | |
| 4088 | bool String::matchn(const String& p_wildcard) const |
| 4089 | { |
| 4090 | if (!p_wildcard.length() || !length()) |
| 4091 | { |
| 4092 | return false; |
| 4093 | } |
| 4094 | return _wildcard_match(p_wildcard.get_data(), get_data(), false); |
| 4095 | } |
| 4096 | |
| 4097 | String String::replace(const String& p_key, const String& p_with) const |
| 4098 | { |
nothing calls this directly
no test coverage detected