87 std::string
cGetFilename(
const std::string& a_input,
const bool a_includeFileExtension =
true);
90 std::string
cGetFileExtension(
const std::string& a_input,
const bool a_includeDot =
false);
104 std::string
cStr(
const bool a_value);
107 std::string
cStr(
const int a_value);
110 std::string
cStr(
const unsigned int a_value);
113 std::string
cStr(
const float a_value,
const unsigned int a_precision = 2);
116 std::string
cStr(
const double a_value,
const unsigned int a_precision = 2);
119 std::string
cStrToLower(
const std::string& a_input);
std::string cReplaceFileExtension(const std::string &a_input, const std::string &a_extension)
This function replaces the file extension of a filename with a new extension name.
Definition: CString.cpp:165
std::string cGetDirectory(const std::string &a_input)
This function extracts the directory path from the full file path.
Definition: CString.cpp:148
int cStrLength(const char *a_input)
This function computes the length of an ANSI string.
Definition: CString.cpp:71
std::string cStr(const bool a_value)
This function converts a boolean into a string.
Definition: CString.cpp:189
std::string cGetFileExtension(const std::string &a_input, const bool a_includeDot)
This function extracts the file extension of a file.
Definition: CString.cpp:122
std::string cStrToLower(const std::string &a_input)
This function converts a string to lower case.
Definition: CString.cpp:283
std::string cGetFilename(const std::string &a_input, const bool a_includeFileExtension)
This function extracts the filename with or without its extension.
Definition: CString.cpp:88
Definition: CAudioBuffer.cpp:56