mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-04 05:19:58 +03:00
1682f0b760
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
63 lines
1.6 KiB
C++
63 lines
1.6 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
|
|
};
|
|
|
|
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&);
|
|
template<typename T = unsigned>
|
|
Optional<T> convert_to_uint(const StringView&);
|
|
template<typename T = unsigned>
|
|
Optional<T> convert_to_uint_from_hex(const StringView&);
|
|
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_whitespace(const StringView&, TrimMode mode);
|
|
Optional<size_t> find(const StringView& haystack, const StringView& needle);
|
|
String to_snakecase(const StringView&);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
using AK::CaseSensitivity;
|
|
using AK::TrimMode;
|