| 3805 | } |
| 3806 | |
| 3807 | bool String::matchn(const String &p_wildcard) const { |
| 3808 | if (!p_wildcard.length() || !length()) { |
| 3809 | return false; |
| 3810 | } |
| 3811 | return _wildcard_match(p_wildcard.get_data(), get_data(), false); |
| 3812 | } |
| 3813 | |
| 3814 | String String::format(const Variant &values, const String &placeholder) const { |
| 3815 | String new_string = *this; |
no test coverage detected