@brief Split the string into three parts, before the @b last match, the last match itself, and after it. */
| 2219 | |
| 2220 | /** @brief Split the string into three parts, before the @b last match, the last match itself, and after it. */ |
| 2221 | partition_type rpartition(string_view pattern) const noexcept { return rpartition_(pattern, pattern.length()); } |
| 2222 | |
| 2223 | /** @brief Split the string into three parts, before the @b last match, the last match itself, and after it. */ |
| 2224 | partition_type rpartition(value_type pattern) const noexcept { return rpartition_(string_view(&pattern, 1), 1); } |