re正则表达式13_review of regex symbols

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了re正则表达式13_review of regex symbols相关的知识,希望对你有一定的参考价值。

Review of Regex Symbols

This chapter covered a lot of notation, so here’s a quick review of what you learned:

  • The ? matches zero or one of the preceding group.

  • The * matches zero or more of the preceding group.

  • The + matches one or more of the preceding group.

  • The {n} matches exactly n of the preceding group.

  • The {n,} matches n or more of the preceding group.

  • The {,m} matches 0 to m of the preceding group.

  • The {n,m} matches at least n and at most m of the preceding group.

  • {n,m}? or *? or +? performs a nongreedy match of the preceding group.

  • ^spam means the string must begin with spam.

  • spam$ means the string must end with spam.

  • The . matches any character, except newline characters.

  • \d\w, and \s match a digit, word, or space character, respectively.

  • \D\W, and \S match anything except a digit, word, or space character, respectively.

  • [abc] matches any character between the brackets (such as ab, or c).

  • [^abc] matches any character that isn’t between the brackets.

以上是关于re正则表达式13_review of regex symbols的主要内容,如果未能解决你的问题,请参考以下文章

python五十八课——正则表达式(切割)

python_正则表达式_re

正则表达式re模块

第二篇:正则表达式

Python基础(13)_python模块之re模块(正则表达式)

正则表达式 re包 2018-10-02