mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 09:18:05 +03:00
3abcfcc178
This behavior might not always be desirable, and so this patch adds a way to disable it.
70 lines
1.8 KiB
C++
70 lines
1.8 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(const StringView& haystack, const StringView& needle);
|
|
String to_snakecase(const StringView&);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
using AK::CaseSensitivity;
|
|
using AK::TrimMode;
|
|
using AK::TrimWhitespace;
|