如何防止用户输入星号(*)



我在我的应用程序中使用QLineEdit。我想防止用户在文本的任何地方输入"*"。我尝试QRegExpValidator,但无法设置适当的regexp。请帮助。

找到解决方案了!

QRegExp re("[^*]+");
QRegExpValidator *validator = new QRegExpValidator(re, this);

将此验证器设置为QLineEdit完成了工作!

相关内容

  • 没有找到相关文章

最新更新