mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-11 02:13:56 +09:00

The existing String::find_byte_offset is case-sensitive. This variant allows performing searches using Unicode-aware case folding.
60 lines
1.8 KiB
C++
60 lines
1.8 KiB
C++
/*
|
|
* Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/String.h>
|
|
#include <AK/StringBuilder.h>
|
|
#include <AK/Utf8View.h>
|
|
#include <LibUnicode/CharacterTypes.h>
|
|
#include <LibUnicode/UnicodeUtils.h>
|
|
|
|
// This file contains definitions of AK::String methods which require UCD data.
|
|
|
|
namespace AK {
|
|
|
|
ErrorOr<String> String::to_lowercase(Optional<StringView> const& locale) const
|
|
{
|
|
StringBuilder builder;
|
|
TRY(Unicode::Detail::build_lowercase_string(code_points(), builder, locale));
|
|
return builder.to_string_without_validation();
|
|
}
|
|
|
|
ErrorOr<String> String::to_uppercase(Optional<StringView> const& locale) const
|
|
{
|
|
StringBuilder builder;
|
|
TRY(Unicode::Detail::build_uppercase_string(code_points(), builder, locale));
|
|
return builder.to_string_without_validation();
|
|
}
|
|
|
|
ErrorOr<String> String::to_titlecase(Optional<StringView> const& locale, TrailingCodePointTransformation trailing_code_point_transformation) const
|
|
{
|
|
StringBuilder builder;
|
|
TRY(Unicode::Detail::build_titlecase_string(code_points(), builder, locale, trailing_code_point_transformation));
|
|
return builder.to_string_without_validation();
|
|
}
|
|
|
|
ErrorOr<String> String::to_casefold() const
|
|
{
|
|
StringBuilder builder;
|
|
TRY(Unicode::Detail::build_casefold_string(code_points(), builder));
|
|
return builder.to_string_without_validation();
|
|
}
|
|
|
|
bool String::equals_ignoring_case(String const& other) const
|
|
{
|
|
return Unicode::equals_ignoring_case(code_points(), other.code_points());
|
|
}
|
|
|
|
Optional<size_t> String::find_byte_offset_ignoring_case(StringView needle, size_t from_byte_offset) const
|
|
{
|
|
auto haystack = code_points().substring_view(from_byte_offset);
|
|
|
|
if (auto index = Unicode::find_ignoring_case(haystack, Utf8View { needle }); index.has_value())
|
|
return *index + from_byte_offset;
|
|
|
|
return {};
|
|
}
|
|
|
|
}
|