2016-09-19 11:50:08 +08:00
|
|
|
#pragma once
|
|
|
|
|
2016-11-03 10:34:30 +08:00
|
|
|
#include <vector>
|
2016-09-19 11:50:08 +08:00
|
|
|
|
|
|
|
namespace vcpkg {namespace Strings {namespace details
|
|
|
|
{
|
|
|
|
inline const char* to_printf_arg(const std::string& s)
|
|
|
|
{
|
|
|
|
return s.c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
inline const char* to_printf_arg(const char* s)
|
|
|
|
{
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline int to_printf_arg(const int s)
|
|
|
|
{
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2016-10-11 06:03:48 +08:00
|
|
|
inline double to_printf_arg(const double s)
|
|
|
|
{
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2016-10-01 02:21:51 +08:00
|
|
|
inline size_t to_printf_arg(const size_t s)
|
|
|
|
{
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2016-09-19 11:50:08 +08:00
|
|
|
std::string format_internal(const char* fmtstr, ...);
|
|
|
|
|
|
|
|
inline const wchar_t* to_wprintf_arg(const std::wstring& s)
|
|
|
|
{
|
|
|
|
return s.c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
inline const wchar_t* to_wprintf_arg(const wchar_t* s)
|
|
|
|
{
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2016-09-30 10:25:07 +08:00
|
|
|
std::wstring wformat_internal(const wchar_t* fmtstr, ...);
|
2016-09-19 11:50:08 +08:00
|
|
|
}}}
|
|
|
|
|
|
|
|
namespace vcpkg {namespace Strings
|
|
|
|
{
|
|
|
|
template <class...Args>
|
|
|
|
std::string format(const char* fmtstr, const Args&...args)
|
|
|
|
{
|
|
|
|
using vcpkg::Strings::details::to_printf_arg;
|
|
|
|
return details::format_internal(fmtstr, to_printf_arg(to_printf_arg(args))...);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class...Args>
|
2016-09-30 10:28:00 +08:00
|
|
|
std::wstring wformat(const wchar_t* fmtstr, const Args&...args)
|
2016-09-19 11:50:08 +08:00
|
|
|
{
|
|
|
|
using vcpkg::Strings::details::to_wprintf_arg;
|
2016-09-30 10:25:07 +08:00
|
|
|
return details::wformat_internal(fmtstr, to_wprintf_arg(to_wprintf_arg(args))...);
|
2016-09-19 11:50:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
std::wstring utf8_to_utf16(const std::string& s);
|
|
|
|
|
|
|
|
std::string utf16_to_utf8(const std::wstring& w);
|
|
|
|
|
2016-10-05 06:23:44 +08:00
|
|
|
std::string::const_iterator case_insensitive_ascii_find(const std::string& s, const std::string& pattern);
|
2016-10-05 05:44:19 +08:00
|
|
|
|
|
|
|
std::string ascii_to_lowercase(const std::string& input);
|
2016-11-03 10:34:30 +08:00
|
|
|
|
|
|
|
std::string join(const std::vector<std::string>& v, const std::string& delimiter);
|
2016-12-16 09:09:14 +08:00
|
|
|
|
|
|
|
void trim(std::string* s);
|
|
|
|
|
|
|
|
std::string trimmed(const std::string& s);
|
2016-09-19 11:50:08 +08:00
|
|
|
}}
|