1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:57:44 +00:00

AK: Add AKString::split_limit to split strings with a limit

This is a small change to the existing split() functionality to support
the case of splitting a string and stopping at a certain number of
tokens. This is useful for parsing e.g. key/value pairs, where the value
may contain the delimiter you're splitting on.
This commit is contained in:
Conrad Pankoff 2019-06-04 18:13:07 +10:00 committed by Andreas Kling
parent ccc6e69a29
commit 042895317d
2 changed files with 7 additions and 1 deletions

View file

@ -109,6 +109,7 @@ public:
return m_impl->to_uppercase();
}
Vector<String> split_limit(char separator, int limit) const;
Vector<String> split(char separator) const;
String substring(int start, int length) const;