About 400 results
Open links in new tab
  1. Regular Expression HOWTO — Python 3.14.2 documentation

    1 day ago · Regular expressions (called REs, or regexes, or regex patterns) are essentially a tiny, highly specialized programming language embedded inside Python and made available …

  2. re — Regular expression operations — Python 3.14.2 documentation

    2 days ago · Compile a regular expression pattern into a regular expression object, which can be used for matching using its match(), search() and other methods, described below.

  3. fnmatch — Unix filename pattern matching — Python 3.14.2 …

    2 days ago · Test whether the filename string name matches the pattern string pat, returning True or False. Both parameters are case-normalized using os.path.normcase(). fnmatchcase() can …

  4. glob — Unix style pathname pattern expansion - Python

    1 day ago · The glob module finds pathnames using pattern matching rules similar to the Unix shell. No tilde expansion is done, but *, ?, and character ranges expressed with [] will be …

  5. 6. Expressions — Dokumentasi Python 3.8.20

    Mar 8, 2020 · This chapter explains the meaning of the elements of expressions in Python. Syntax Notes: In this and the following chapters, extended BNF notation will be used to describe …