mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-13 11:42:38 +03:00
6704961c82
This removes the awkward String::replace API which was the only String API which mutated the String and replaces it with a new immutable version that returns a new String with the replacements applied. This also fixes a couple of UAFs that were caused by the use of this API. As an optimization an equivalent StringView::replace API was also added to remove an unnecessary String allocations in the format of: `String { view }.replace(...);`
84 lines
2.5 KiB
C++
84 lines
2.5 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
* Copyright (c) 2020, Fei Wu <f.eiwu@yahoo.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Forward.h>
|
|
|
|
namespace AK {
|
|
|
|
enum class CaseSensitivity {
|
|
CaseInsensitive,
|
|
CaseSensitive,
|
|
};
|
|
|
|
enum class TrimMode {
|
|
Left,
|
|
Right,
|
|
Both
|
|
};
|
|
|
|
enum class TrimWhitespace {
|
|
Yes,
|
|
No,
|
|
};
|
|
|
|
struct MaskSpan {
|
|
size_t start;
|
|
size_t length;
|
|
|
|
bool operator==(const MaskSpan& other) const
|
|
{
|
|
return start == other.start && length == other.length;
|
|
}
|
|
bool operator!=(const MaskSpan& other) const
|
|
{
|
|
return !(*this == other);
|
|
}
|
|
};
|
|
|
|
namespace StringUtils {
|
|
|
|
bool matches(const StringView& str, const StringView& mask, CaseSensitivity = CaseSensitivity::CaseInsensitive, Vector<MaskSpan>* match_spans = nullptr);
|
|
template<typename T = int>
|
|
Optional<T> convert_to_int(const StringView&, TrimWhitespace = TrimWhitespace::Yes);
|
|
template<typename T = unsigned>
|
|
Optional<T> convert_to_uint(const StringView&, TrimWhitespace = TrimWhitespace::Yes);
|
|
template<typename T = unsigned>
|
|
Optional<T> convert_to_uint_from_hex(const StringView&, TrimWhitespace = TrimWhitespace::Yes);
|
|
bool equals_ignoring_case(const StringView&, const StringView&);
|
|
bool ends_with(const StringView& a, const StringView& b, CaseSensitivity);
|
|
bool starts_with(const StringView&, const StringView&, CaseSensitivity);
|
|
bool contains(const StringView&, const StringView&, CaseSensitivity);
|
|
bool is_whitespace(const StringView&);
|
|
StringView trim(const StringView& string, const StringView& characters, TrimMode mode);
|
|
StringView trim_whitespace(const StringView& string, TrimMode mode);
|
|
|
|
Optional<size_t> find(StringView const& haystack, char needle, size_t start = 0);
|
|
Optional<size_t> find(StringView const& haystack, StringView const& needle, size_t start = 0);
|
|
Optional<size_t> find_last(StringView const& haystack, char needle);
|
|
Vector<size_t> find_all(StringView const& haystack, StringView const& needle);
|
|
enum class SearchDirection {
|
|
Forward,
|
|
Backward
|
|
};
|
|
Optional<size_t> find_any_of(StringView const& haystack, StringView const& needles, SearchDirection);
|
|
|
|
String to_snakecase(const StringView&);
|
|
String to_titlecase(StringView const&);
|
|
|
|
String replace(StringView const&, StringView const& needle, StringView const& replacement, bool all_occurrences = false);
|
|
size_t count(StringView const&, StringView const& needle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
using AK::CaseSensitivity;
|
|
using AK::TrimMode;
|
|
using AK::TrimWhitespace;
|