re.search

TODO:之前已写过相关的帖子,抽空把内容整理至此。

和其他一些心得:


官网文档:

  • 英文
    • re.search — Regular expression operations — Python 3 documentation

      re.search(pattern, string, flags=0)

      Scan through string looking for the first location where the regular expression pattern produces a match, and return a corresponding match object. Return None if no position in the string matches the pattern; note that this is different from finding a zero-length match at some point in the string.

  • 中文
    • re.search --- 正则表达式操作 — Python 3 文档

      re.search(pattern, string, flags=0)

      扫描整个 字符串 找到匹配样式的第一个位置,并返回一个相应的 匹配对象。如果没有匹配,就返回一个 None ; 注意这和找到一个零长度匹配是不同的。

results matching ""

    No results matching ""