QTのQLineEdit IP入力ルールの設定

1192 ワード

QRegExp rx("^((2[0-4]\\d|25[0-5]|[01]?\\d\\d?)\\.){3}(2[0-4]\\d|25[0-5]|[01]?\\d\\d?)$");
QRegExpValidator *m_IP = new QRegExpValidator(rx, this);
lineEdit->setValidator(m_IP);

QRegExpValidatorヘッダファイルを含める必要があります:
#include