Files

13 lines
399 B
C++
Raw Permalink Normal View History

2026-08-11 17:40:36 +03:00
#pragma once
#include <string>
namespace arrays {
2026-08-15 16:55:46 +03:00
[[nodiscard]] auto to_uppercase(const std::string &text) -> std::string;
2026-08-11 17:40:36 +03:00
[[nodiscard]] auto trim(const std::string& text) -> std::string;
2026-08-15 16:55:46 +03:00
[[nodiscard]] auto replace_all(const std::string &text, char from, char to) -> std::string;
2026-08-11 17:40:36 +03:00
[[nodiscard]] auto starts_with(const std::string& text, const std::string& prefix) -> bool;
} // namespace arrays