Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的应用程序中使用 QLineEdit。我想阻止用户在文本的任何地方输入“*”。我尝试使用 QRegExpValidator 但无法设置正确的正则表达式。请帮忙。
得到解决方案!
QRegExp re("[^*]+"); QRegExpValidator *validator = new QRegExpValidator(re, this);
将此验证器设置为 QLineEdit 完成了这项工作!