Content


NTL
Core
TrimLeft

TrimLeft


Remove all space characters from the string beginning.

You can find more information in comments below.

/**
Remove spaces at the beginning of string and return new one 
@param str String where to search spaces 
@param local Locale used for search. Default is current locale 
@return String with removed spaces from beginning 
*/
String TrimLeft(const String &str, const std::locale &locale = std::locale());
/**
Remove spaces at the beginning of ANSI string and return new one 
@param str String where to search spaces 
@param local Locale used for search. Default is current locale 
@return String with removed spaces from beginning 
*/
AnsiString TrimLeft(const AnsiString &str, const std::locale &locale = std::locale());
Namespace: nitisa
Include: Nitisa/Core/Strings.h