Sunday 29 March 2020

Regular Expressions with Python - Beginners Level Learning Resources

List of Beginners Level Learning Resources - for Regular Expressions , mostly for the Python programming language .

Source = https://docs.python.org/3/howto/regex.html

Introduction to Regex with Python

Regular expressions (called REs, or regexes, or regex patterns) are essentially a tiny, highly specialized programming language embedded inside Python and made available through the re module. Using this little language, you specify the rules for the set of possible strings that you want to match; this set might contain English sentences, or e-mail addresses, or TeX commands, or anything you like. You can then ask questions such as “Does this string match the pattern?”, or “Is there a match for the pattern anywhere in this string?”. You can also use REs to modify a string or to split it apart in various ways.

Other learning resources -

Regex Checking online Site     https://regex101.com/
All Langs Regex excellent demo with within IDE regex matches     https://www.youtube.com/watch?v=sa-TUpSx1JA
Good practical advise for use cases     https://www.python-course.eu/python3_re.php
Good practical advise for use cases     https://www.python-course.eu/python3_re_advanced.php
Another Regex Resource    https://help.uis.cam.ac.uk/service/support/training/downloads/course-files/programming-student-files/python-courses/pythontopics/pythontopics-files/regexp.pdf
Another Regex Resource    http://www-personal.umich.edu/~csev/books/py4inf/media/Py4Inf-11-Regex.pdf
Another Regex Resource    http://www.cs.stir.ac.uk/courses/CSC9Y4/lectures/RegularExpressionsPython.pdf
Another Regex Resource    https://homes.cs.washington.edu/~ruzzo/courses/gs559/09wi/lectures/11b-regexp.pdf
Another Regex Resource    https://www.princeton.edu/~mlovett/reference/Regular-Expressions.pdf
Another Regex Resource    http://zetcode.com/python/regularexpressions/
Another Regex Resource    https://medium.com/factory-mind/regex-tutorial-a-simple-cheatsheet-by-examples-649dc1c3f285
Good practical advise for use cases     https://www.machinelearningplus.com/python/python-regex-tutorial-examples/
Another Regex Resource    https://www.guru99.com/python-regular-expressions-complete-tutorial.html
Another Regex Resource    https://www.youtube.com/watch?v=rcM26jV7Mdo
DataCamp Regex Resource    https://www.datacamp.com/community/tutorials/python-regular-expression-tutorial#comments






No comments:

Post a Comment