Regular Expressions
What is a regular expression ? Which text editor are we going to use (Sublime Text) ?
How to look for a letter, a sequence of letters (word) ? (Part 2 )
What are the main metacharacters in regex ? (Part 2)
How to look for special characters, that are part of regex reserved characters ? Replacing consecutive multiple spaces by one space (Part 3)
How to look for a date in a text document ? an email ? (Part 3 )
How to look for a repeating sequence for an exact number of times ? Counting in regular expressions (Part 3 )
How to look for a moroccan ID number in a document ? (Part 3 )
How many words are there in a document ? (Part 4 )
How to count the number of lines in a document ? (Part 4 )
How to look for a sequence and only replace a part of it ? An introduction to groups and groupping (Part 5 )
How to replace uppercase letters by their lowercase equivalent in Regex ?
How to use regular expressions in Java ? (Part 6 )
How to use regular expressions in the search function in Eclipse ? Some handy patterns for SQL queries, specific file types,...etc (Part 6 )
How to use regular expressions in Python ? (Part 7)
Why is overusing regular expressions in code bad ? The problem of readability (Part 8)
Does google support Regex search ? (Part 8)
Some ressources for regular expressions : https://regex101.com/ (Part 9)
Some ressources for regular expressions (Part 10)