函数QString::startsWith()判断一个字符串是否以某个字符串开头。此函数具有 两个参数,第一个参数指定了一个字符串,第二个参数指定是否大小写敏感(默 认情况下,是大小写敏感的),例如:
1 QString str="Welcome to you! ";
2 str.startsWith("Welcome",Qt::CaseSensitive); //返回true;
3 str.startsWith("you",Qt::CaseSensitive); //返回false;
1 QString str=" Welcome to you! ";
2 str.contains("Welcome",Qt::CaseSensitive); //返回true;