日本のBingへ
About 449,000 results
Open links in new tab
  1. re — Regular expression operations — Python 3.14.2 documentation

    2 days ago · The third-party regex module, which has an API compatible with the standard library re module, but offers additional functionality and a more thorough Unicode support.

  2. Python RegEx - W3Schools

    Python has a built-in package called re, which can be used to work with Regular Expressions. Import the re module: When you have imported the re module, you can start using regular expressions: Search …

  3. re | Python Standard Library – Real Python

    The Python re module provides support for working with regular expressions, allowing you to search, match, and manipulate strings using complex pattern descriptions.

  4. Python RegEx - GeeksforGeeks

    Jul 10, 2025 · In Python, the built-in re module provides support for using RegEx. It allows you to define patterns using special characters like \d for digits, ^ for the beginning of a string and many more.

  5. Python re Module - Use Regular Expressions with Python - Regex Support

    Jan 9, 2026 · Python’s built-in “re” module provides excellent support for regular expressions, with a modern and complete regex flavor. Two significant missing features, atomic grouping and possessive …

  6. Regular Expressions in Python: the re Module | note.nkmk.me

    May 9, 2023 · This article first explains the functions and methods of the re module, then explains the metacharacters (special characters) and special sequences available in the re module.

  7. Mastering the `re` Module in Python: A Comprehensive Guide

    Mar 18, 2025 · Whether you are validating user input, searching through large text files, or parsing log data, the re module can simplify these tasks significantly. This blog post will explore the fundamental …

  8. Python - Regular Expressions (re) Methods - Online Tutorials Library

    The re module in Python provides powerful tools for working with regular expressions. Regular expressions, often abbreviated as regex or regexp, are sequences of characters that define a search …

  9. Use Regular Expressions in Pythonre module, patterns, flags

    Python’s re module provides fast, pattern-based text processing for searching, extracting, splitting, and replacing strings. This guide shows practical methods, with steps you can copy and adapt, plus the …

  10. Regular Expression HOWTO — Python 3.14.2 documentation

    2 days ago · This document is an introductory tutorial to using regular expressions in Python with the re module. It provides a gentler introduction than the corresponding section in the Library Reference.