| 125 | Int rfind(const char *s, Int n); |
| 126 | Str *replace_count(Int n, Str *pattern, Str *replacement); |
| 127 | Str *replace_all(Str *pattern, Str *replacement) { |
| 128 | return replace_count(_len, pattern, replacement); |
| 129 | } |
| 130 | StrArr *split(Str *sep); |
| 131 | StrArr *split(char ch); |
| 132 | StrArr *split(const char *s); |
no outgoing calls