mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-03 08:08:43 +00:00
AK: Add a helper to get the last split-group
This commit is contained in:
parent
96276c87cf
commit
154871834b
Notes:
sideshowbarker
2024-07-17 10:16:43 +09:00
Author: https://github.com/Hendiadyoin1
Commit: 154871834b
Pull-request: https://github.com/SerenityOS/serenity/pull/14326
Issue: https://github.com/SerenityOS/serenity/issues/14266
Reviewed-by: https://github.com/ADKaster
Reviewed-by: https://github.com/timschumi ✅
2 changed files with 10 additions and 0 deletions
|
@ -159,6 +159,8 @@ public:
|
|||
using SearchDirection = StringUtils::SearchDirection;
|
||||
[[nodiscard]] Optional<size_t> find_any_of(StringView needles, SearchDirection direction) const { return StringUtils::find_any_of(*this, needles, direction); }
|
||||
|
||||
[[nodiscard]] StringView find_last_split_view(char separator) const { return view().find_last_split_view(separator); }
|
||||
|
||||
[[nodiscard]] String substring(size_t start, size_t length) const;
|
||||
[[nodiscard]] String substring(size_t start) const;
|
||||
[[nodiscard]] StringView substring_view(size_t start, size_t length) const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue