bool SimpleString::equalsNoCase(const SimpleString& str) const
{
	return toLower() == str.toLower();
}
bool SimpleString::containsNoCase(const SimpleString& other) const
{
	return toLower().contains(other.toLower());
}