summaryrefslogtreecommitdiff
path: root/AK/String.cpp
AgeCommit message (Expand)Author
2021-01-12AK: Add String{View,}::find(StringView)AnotherTest
2021-01-12AK: Simplify constructors and conversions from nullptr_tLenny Maiorani
2020-12-30AK: Move String::number entirely to header fileAndrew Kaster
2020-12-27LibJS: Implement (mostly) spec compliant version of Number.toString()Stephan Unverwerth
2020-12-21AK: Generalize AK::String::to_int() for more typesSahan Fernando
2020-12-10AK: Add String::substring(start)Andreas Kling
2020-12-09AK: Add String::substring_view(size_t).asynts
2020-11-15Everywhere: Add missing <AK/ByteBuffer.h> includesAndreas Kling
2020-10-29AK: Make String::matches() capable of reporting match positions tooAnotherTest
2020-10-22AK: Enhance String::contains to allow case-insensitive searchesTom
2020-10-05AK: Move StringImpl::operator== implementation into StringImplNico Weber
2020-10-03Everywhere: Fix more typosLinus Groh
2020-10-02AK+Format: Do some housekeeping in the format implementation.asynts
2020-09-27AK: Move trim_whitespace() into StringUtils and add it to StringViewAnotherTest
2020-09-23AK: Resolve format related circular dependencies properly.asynts
2020-09-22AK: Use format in String::number.asynts
2020-08-30AK: Add String::copy_characters_to_buffer()Sergey Bugaev
2020-08-24AK: Remove redundant declaration in String.cppBen Wiederhake
2020-08-22AK: Prefer snprintf over sprintfBen Wiederhake
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