summaryrefslogtreecommitdiff
path: root/AK/String.cpp
AgeCommit message (Expand)Author
2020-07-28AK: Make String::substring() return non-null for 0-length stringsPeter Elliott
2020-07-21AK: Add case insensitive version of starts_withLuke
2020-07-13AK: Give String::index_of() an optional second "start" argumentNico Weber
2020-06-12AK: Make string-to-number conversion helpers return OptionalAndreas Kling
2020-05-26AK: Add case insensitive String::ends_with supportBrian Gianforcaro
2020-05-26AK: Move String::ends_with implementation to StringUtilsBrian Gianforcaro
2020-05-13AK: Replace String::trim_spaces() with String::trim_whitespace()Linus Groh
2020-05-11AK: Add String::trim_spaces()Linus Groh
2020-04-13LibELF: Add find_demangled_functionItamar
2020-04-11AK: String::contains() should say no if needle or haystack is nullAndreas Kling
2020-04-01AK: Add String::replace() functionalityEmanuel Sprung
2020-03-28AK: Add some string comparison operatorsAndreas Kling
2020-03-23AK: Reduce header dependency graph of String.hAndreas Kling
2020-03-22AK: Add FlyString::to_lowercase() and LogStream operator<<(FlyString)Andreas Kling
2020-03-22AK: Add FlyString::equals_ignoring_case(StringView)Andreas Kling
2020-03-08AK: Move memory stuff (fast memcpy, etc) to a separate headerAndreas Kling
2020-03-02AK: Move to_int(), to_uint() implementations to StringUtils (#1338)howar6hill
2020-03-02AK: Move the wildcard-matching implementation to StringUtilshowar6hill
2020-03-01AK: Remove unnecessary casts to size_t, after Vector changesAndreas Kling
2020-02-15AK: Add String starts_with(char) & ends_with(char)Shannon Booth
2020-02-14AK: Add a forward declaration headerAndreas Kling
2020-02-13AK: Move escape_html_entities() from LibHTML to AKAndreas Kling
2020-02-05AK: Break String::number() overloads into i/l/ll and u/ul/ullAndreas Kling
2020-01-22AK: Also add a keep_empty argument to String::split[_limit]()Sergey Bugaev
2020-01-18Meta: Add license header to source filesAndreas Kling
2020-01-14AK: Fix String[View]::split_view() returning an extra empty partSergey Bugaev
2020-01-14AK: Don't return null from String[View]::substring_view()Sergey Bugaev
2019-12-30AK: Use stack buffers in String::number() to avoid some malloc() callsAndreas Kling
2019-12-18AK: Add String::equals_ignoring_case(StringView)Andreas Kling
2019-12-09AK: Use size_t for the length of stringsAndreas Kling
2019-10-28AK: Add String::contains(String)Andreas Kling
2019-10-19String: Define operator>(String)Andreas Kling
2019-10-07AK: Make String compile on platforms where size_t==u32Andreas Kling
2019-09-28AK: Add a keep_empty argument to String[View]::substring{_view}Sergey Bugaev
2019-09-11AK: Add String::number(size_t) overloadAndreas Kling
2019-09-06AK: Rename <AK/AKString.h> to <AK/String.h>Andreas Kling
2019-08-25AK: Add String::operator==(StringView)Andreas Kling
2019-07-08StringView: Rename characters() to characters_without_null_termination().Andreas Kling
2019-07-08String: String::to_int() should fail for any empty string, not just null.Andreas Kling
2019-07-03AK: Rename the common integer typedefs to make it obvious what they are.Andreas Kling
2019-07-03AK: Add String::number() for creating a String from a number.Andreas Kling
2019-06-14AK: Massage it into building on my host system without breaking Serenity.Andreas Kling
2019-06-14AK: Fix nullptr dereference in String::matches().Sergey Bugaev
2019-06-14AK: Fix String::matches() with non-null-terminated StringViews.Sergey Bugaev
2019-06-04AK: Add String::starts_with to match String::ends_withConrad Pankoff
2019-06-04AK: Add AKString::split_limit to split strings with a limitConrad Pankoff
2019-06-02Take StringView in more placesRobin Burchell
2019-06-02AK: Add implicit String -> StringView conversionRobin Burchell
2019-05-28Add clang-format fileRobin Burchell
2019-05-28Shell: Allow * and ? wildcard expansion in argumentsRobin Burchell