Code Monkey home page Code Monkey logo

python-p3-conclusion-to-regex's Introduction

Conclusion to Regular Expressions

Learning Goals

  • Validate that strings match specific patterns using regular expressions.
  • Search for strings that match specific patterns using regular expressions.

Key Vocab

  • Regular Expression: a sequence of characters used to search for a pattern inside of a string.
  • Pattern: a description of sequences of characters that share certain traits with one another. Sequences do not need to be the same length or share any common characters to pattern match. Also called a filter.

Conclusion

Regular expressions can be tricky, but there are many tools that will help you craft patterns to check that strings match important patterns (like email addresses and phone numbers) and search for these types of strings in massive walls of text. We learned that:

  • There is a near-universal regular expression language that stems from PERL.
  • There are online tools to check your regular expression patterns as you go, such as regex101.
  • RegExes in Python are managed using the re module in the Python standard library.
  • search(), match(), and fullmatch() return a single re.Match object if your RegEx pattern has a match in the search string.
  • findall() returns a list of matching strings in the search string.
  • split() and sub() can be used to modify strings where there are matches for a RegEx pattern.

We didn't cover everything about regular expressions in this module- there are many nuances that you will learn throughout your software career. Make sure to revisit regular expressions regularly to keep building your skills.


Resources

python-p3-conclusion-to-regex's People

Contributors

lizbur10 avatar professor-ben avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.