QLineEdit

    QString str=ui->lineEdit->text().trimmed();
    qDebug()<<str;
    //如果在lineEdit中输入的字符串前出现空格,则输出的字符串为字符串前的所有空格消失
    //如:输入:    aa a
    //则输出"aa a"
 
 
    int str=ui->lineEdit->text().size();
    qDebug()<<str;
    //输出字符串中字符个数

你可能感兴趣的:(QLineEdit)