美文网首页
正则表达式的方法--re

正则表达式的方法--re

作者: 神奇的腿 | 来源:发表于2017-03-16 15:38 被阅读0次

    译自官方API,备查待补充。

    • re.compile(pattern, flags=0)
      将正则表达式patten编译成正则表达式对象。
    • re.DEBUG
      显示关于正则表达式的debug信息。
    • re.I
      re.IGNORECASE
      执行大小写不敏感匹配。这并不被当前的语言环境影响。
    • re.L
      re.LOCALE
      使\w, \W, \b, \B, \s\S取决于当前语言环境。
    • re.M
      re.MULTILINE
      指定匹配字符^$的模式。具体见文档。
    • re.S
      re.DOTALL
      指定匹配字符的模式。
      -re.U
      re.UNICODE
      指定匹配字符的模式。
    • re.X
      re.VERBOSE
      可在正则表达式中间添加注释使正则更易读。
    • re.search(pattern, string, flags=0)
      查找并返回MatchObject实例。
    • re.split(pattern, string, maxsplit=0, flags=0)
      根据pattern的出现切分string
    • re.findall(pattern, string, flags=0)
      返回匹配的字符串列表。
    • re.finditer(pattern, string, flags=0)
      返回匹配的iterator。
    • re.sub(pattern, repl, string, count=0, flags=0)
      string中用repl替换pattern并返回。
    • re.subn(pattern, repl, string, count=0, flags=0)
      功能和re.sub一样,但返回的是一个元组(new_string, number_of_subs_made)
    • re.escape(string)
      返回所有带着非字母数字反斜杠的字符串。这在当你想匹配的string中含有正则表达式时很有用。
    • re.purge()
      Clear the regular expression cache.

    相关文章

      网友评论

          本文标题:正则表达式的方法--re

          本文链接:https://www.haomeiwen.com/subject/odljnttx.html