本文整理汇总了Python中cia.LibCIA.XML.allText方法的典型用法代码示例。如果您正苦于以下问题:Python XML.allText方法的具体用法?Python XML.allText怎么用?Python XML.allText使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cia.LibCIA.XML
的用法示例。
在下文中一共展示了XML.allText方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: rulesetReturn
# 需要导入模块: from cia.LibCIA import XML [as 别名]
# 或者: from cia.LibCIA.XML import allText [as 别名]
def rulesetReturn(msg):
nodes = xp.queryObject(msg)
if nodes:
self.result = XML.allText(nodes[0]).strip()
else:
self.result = None
raise RulesetReturnException()
示例2: extractSummary
# 需要导入模块: from cia.LibCIA import XML [as 别名]
# 或者: from cia.LibCIA.XML import allText [as 别名]
def extractSummary(element, widthLimit=80):
"""Extract all text from the given XML element, remove extra
whitespace, and truncate it to no longer than the given width.
"""
# Extract all text, eating extra whitespace
text = re.sub("\s+", " ", XML.allText(element)).strip()
# Use wrapLine to cleanly break it if possible, but
# truncate it if necessary- wrapLine will not break words in
# half if they are longer than the wrap width.
lines = wrapLine(text, widthLimit)
if lines:
summary = lines[0][:widthLimit]
if len(summary) < len(text):
summary += "..."
return summary
示例3: format
# 需要导入模块: from cia.LibCIA import XML [as 别名]
# 或者: from cia.LibCIA.XML import allText [as 别名]
def format(self, args):
colorText = XML.dig(args.message.xml, "message", "body", "colorText")
if self.color:
return self.formatter.parse(colorText)
else:
return XML.allText(colorText)