本文整理汇总了Python中tagger.Tagger.replaceNegation方法的典型用法代码示例。如果您正苦于以下问题:Python Tagger.replaceNegation方法的具体用法?Python Tagger.replaceNegation怎么用?Python Tagger.replaceNegation使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tagger.Tagger
的用法示例。
在下文中一共展示了Tagger.replaceNegation方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: testRegexNegationSpecificCharacter
# 需要导入模块: from tagger import Tagger [as 别名]
# 或者: from tagger.Tagger import replaceNegation [as 别名]
def testRegexNegationSpecificCharacter(self):
self.assertEqual(Tagger.replaceNegation('!a'), '[^a]')
示例2: testRegexNegationUppercaseAndLowercaseLetter
# 需要导入模块: from tagger import Tagger [as 别名]
# 或者: from tagger.Tagger import replaceNegation [as 别名]
def testRegexNegationUppercaseAndLowercaseLetter(self):
self.assertEqual(Tagger.replaceNegation('!%w'), '[^a-zA-Z]')
示例3: testRegexNegationAnyLetterOrDigit
# 需要导入模块: from tagger import Tagger [as 别名]
# 或者: from tagger.Tagger import replaceNegation [as 别名]
def testRegexNegationAnyLetterOrDigit(self):
self.assertEqual(Tagger.replaceNegation('!%W'), '[^\w]')
示例4: testRegexNegationLowercaseLetter
# 需要导入模块: from tagger import Tagger [as 别名]
# 或者: from tagger.Tagger import replaceNegation [as 别名]
def testRegexNegationLowercaseLetter(self):
self.assertEqual(Tagger.replaceNegation('!%l'), '[^a-z]')
示例5: testRegexNegationAnyCharacter
# 需要导入模块: from tagger import Tagger [as 别名]
# 或者: from tagger.Tagger import replaceNegation [as 别名]
def testRegexNegationAnyCharacter(self):
self.assertEqual(Tagger.replaceNegation('!%a'), '')
示例6: testRegexNegationUppercaseLetter
# 需要导入模块: from tagger import Tagger [as 别名]
# 或者: from tagger.Tagger import replaceNegation [as 别名]
def testRegexNegationUppercaseLetter(self):
self.assertEqual(Tagger.replaceNegation('!%L'), '[^A-Z]')
示例7: testRegexNegationWhitespace
# 需要导入模块: from tagger import Tagger [as 别名]
# 或者: from tagger.Tagger import replaceNegation [as 别名]
def testRegexNegationWhitespace(self):
self.assertEqual(Tagger.replaceNegation('!%s'), '\S')
示例8: testRegexNegationTab
# 需要导入模块: from tagger import Tagger [as 别名]
# 或者: from tagger.Tagger import replaceNegation [as 别名]
def testRegexNegationTab(self):
self.assertEqual(Tagger.replaceNegation('!%t'), '[^\t]')
示例9: testRegexNegationDigit
# 需要导入模块: from tagger import Tagger [as 别名]
# 或者: from tagger.Tagger import replaceNegation [as 别名]
def testRegexNegationDigit(self):
self.assertEqual(Tagger.replaceNegation('!%d'), '[^0-9]')
示例10: testRegexNegationNewline
# 需要导入模块: from tagger import Tagger [as 别名]
# 或者: from tagger.Tagger import replaceNegation [as 别名]
def testRegexNegationNewline(self):
self.assertEqual(Tagger.replaceNegation('!%n'), '[^\n]')