标签: pyqt
我一直在使用.strip()删除前导/尾随空格,例如。如果我的输入内容是abc或abc,则可以在我的原因下使用。 但是,有什么方法可以将其嵌入到QLineEdit中吗?
.strip()
abc
类似于设置仅对数字输入使用以下内容的验证器?
int_validator = QtGui.QIntValidator() num_input.setValidator(int_validator) # where num_input is a QLIneEdit