本文整理汇总了Python中java.lang.String.matches方法的典型用法代码示例。如果您正苦于以下问题:Python String.matches方法的具体用法?Python String.matches怎么用?Python String.matches使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类java.lang.String
的用法示例。
在下文中一共展示了String.matches方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: evaluate
# 需要导入模块: from java.lang import String [as 别名]
# 或者: from java.lang.String import matches [as 别名]
def evaluate(self,arguments,field,format):
from java.lang import String
flag=true
values=field.getValues()
for value in values:
argument=String(value)
arguments.append(argument)
if not argument.matches(format):
flag=false
return flag
示例2: approveSelection
# 需要导入模块: from java.lang import String [as 别名]
# 或者: from java.lang.String import matches [as 别名]
def approveSelection(self):
filePath = self.getSelectedFile().getPath()
fileName = String(self.getSelectedFile().getName())
if fileName.matches('[_a-zA-Z0-9()~#.]+'):
if os.path.exists(filePath):
message = 'File "' + str(fileName) + ' exists. Overwrite?'
result = JOptionPane.showConfirmDialog(self, message,
'Confirm Overwrite',
JOptionPane.YES_NO_OPTION)
if result == JOptionPane.YES_OPTION:
JFileChooser.approveSelection(self)
else:
JFileChooser.approveSelection(self)
else:
message = 'The file name contains illegal characters. Please rename.'
JOptionPane.showMessageDialog(self, message, 'Error', JOptionPane.ERROR_MESSAGE)