本文整理汇总了Python中attr_util.Util.calc_split方法的典型用法代码示例。如果您正苦于以下问题:Python Util.calc_split方法的具体用法?Python Util.calc_split怎么用?Python Util.calc_split使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类attr_util.Util
的用法示例。
在下文中一共展示了Util.calc_split方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: calc_terms
# 需要导入模块: from attr_util import Util [as 别名]
# 或者: from attr_util.Util import calc_split [as 别名]
def calc_terms(self):
the_regexp = ".+_(.+)"
if "regexp" in self.kwargs:
the_regexp = Util.get_the_regexp(self.kwargs)
tokens = Util.calc_split(self.kwargs["string"])
tags = []
for token in tokens:
match = re.match(the_regexp, token)
if match == None:
pass
# print token
else:
tag = match.group(1)
tags += [tag]
return tags