nonebot.command.argfilter.extractors 1.2.0+

提供几种常用的提取器。

def extract_text(arg)

  • 说明

    提取消息中的纯文本部分(使用空格合并纯文本消息段)。

  • 参数

  • 返回

    • str

def extract_image_urls(arg)

  • 说明

    提取消息中的图片 URL 列表。

  • 参数

  • 返回

    • list[str]

def extract_numbers(arg)

  • 说明

    提取消息中的所有数字(浮点数)。

  • 参数

  • 返回

    • list[float]