 |
Blamite Game Engine - blam!
00263.10.17.20.0001.blamite
The core library for the Blamite Game Engine.
|
Go to the documentation of this file.
10 #define str_tolower(str) Blam::Utils::String::ToLower(str);
11 #define str_toupper(str) Blam::Utils::String::ToUpper(str);
31 BLAM bool StartsWith(std::string
string, std::string starts_with,
bool case_insensetive);
42 BLAM bool EndsWith(std::string
string, std::string ends_with,
bool case_insensetive);
53 BLAM std::string
Replace(std::string orig, std::string to_replace, std::string replace_with);
98 BLAM std::vector<std::string>
Split(std::string
string, std::string splitter);
Namespace surrounding all major engine components.
Definition: blam_api.h:17
BLAM bool MemoryStringCompare(char *address, char *to_compare, int size)
Checks the specified address in memory to see if it matches a given string, ignoring null terminators...
Definition: string.cpp:132
BLAM std::string Replace(std::string orig, std::string to_replace, std::string replace_with)
Replaces part of a string with another string.
Definition: string.cpp:67
BLAM std::vector< std::string > Split(std::string string, std::string splitter)
Splits a string around any instance of a substring.
Definition: string.cpp:87
BLAM std::string ToUpper(std::string string)
Transforms a string to all-uppercase.
Definition: string.cpp:58
BLAM std::string ToLower(std::string string)
Transforms a string to all-lowercase.
Definition: string.cpp:49
BLAM bool ContainsChar(std::string string, char contains)
Determines whether or not a string contains the specified character.
Definition: string.cpp:116
#define BLAM
Definition: string.h:7
BLAM bool EndsWith(std::string string, std::string ends_with, bool case_insensetive)
Determines whether or not a string ends with another string, case-sensetive.
Definition: string.cpp:24
@ String
Represents a std::string.
Definition: globals.h:178
BLAM bool StartsWith(std::string string, std::string starts_with, bool case_insensetive)
Determines whether or not a string starts with another string, case-insensetive.
Definition: string.cpp:6
BLAM std::string FixDirectorySeparators(std::string string)
Replaces any instance of \\\ in a string with /.
Definition: string.cpp:107