![]() |
Blamite Game Engine - Strings
00291.01.11.21.2204.blamite
A library containing general purpose utilities and classes for use in multiple projects.
|
#include "components/utils/converters/converters.h"
#include <regex>
#include <Windows.h>
#include <codecvt>
#include "components/utils/string/string.h"
#include "components/hooks/hooks.h"
#include "components/logger/logger.h"
Functions | |
bool | IsStringInt (std::string string) |
Checks whether or not a string is a valid representation of an integer. More... | |
bool | IsStringFloat (std::string string) |
Checks whether or not a string is a valid representation of a float. More... | |
bool IsStringFloat | ( | std::string | string | ) |
Checks whether or not a string is a valid representation of a float.
string | - The string to check. |
true
if the string represents a valid float, otherwise returns `false. bool IsStringInt | ( | std::string | string | ) |
Checks whether or not a string is a valid representation of an integer.
string | - The string to check. |
true
if the string represents a valid integer, otherwise returns `false.