mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
AK: Add a helper to get the last split-group
This commit is contained in:
committed by
Andreas Kling
parent
96276c87cf
commit
154871834b
@@ -127,6 +127,14 @@ public:
|
||||
|
||||
[[nodiscard]] Vector<StringView> split_view_if(Function<bool(char)> const& predicate, bool keep_empty = false) const;
|
||||
|
||||
[[nodiscard]] StringView find_last_split_view(char separator) const
|
||||
{
|
||||
auto begin = find_last(separator);
|
||||
if (!begin.has_value())
|
||||
return *this;
|
||||
return substring_view(begin.release_value() + 1);
|
||||
}
|
||||
|
||||
template<VoidFunction<StringView> Callback>
|
||||
void for_each_split_view(char separator, bool keep_empty, Callback callback) const
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user