util.stringctfe

String functions used in CTFE.

string stripCtfe(string str);

Replacement for std.string.strip, which can't be evaluated at compile time.

Removes all leading and trailing spaces and returns resulting string.

Parameters:
string str String to strip.
Returns:
Stripped string.
pure nothrow char toLowerCtfe(const char c);

Convert a character to lowercase (if not lowercase already).