QT字符串判断是否含有某特定字符串

#include
 
  1. QString str="iloveyou";

  2. str.contains("you",Qt::CaseSensitive);//成功返回true 第二个参数表示是否大小写敏感

你可能感兴趣的:(qt)