//邮编:数字限制,最长允许输入10个数字
QRegExp regExpCodeZip("[0-9]+$");
ui.sCodeZipEdit->setValidator(new QRegExpValidator(regExpCodeZip,this));
//电话:字符串限制,最长允许输入20个字符,要考虑“-“,如:010-58592345的情况 QRegExp regExpTel("[-0-9]+$"); ui.sTelEdit->setValidator(new QRegExpValidator(regExpTel,this));
原文链接:https://www.f2er.com/regex/360228.html