IStartsWith
bool IStartsWith(const BString& string) const;
bool IStartsWith(const char* string) const;
bool IStartsWith(const char* string, int32 length) const;
return IStartsWith(string.String(), string.Length());
return IStartsWith(string, strlen(safestr(string)));
&& type != NULL && BString(type).IStartsWith("image");
CPPUNIT_ASSERT(string1.IStartsWith(string2));
CPPUNIT_ASSERT(string1.IStartsWith("lAsT"));
CPPUNIT_ASSERT(string1.IStartsWith("lAsT", 4));