1. Regular Expressions in Perl
  2. Regular Expressions I
    1. What are regexes good for ?
    2. Examples
    3. Where can I use it ?
    4. Introduction to Regexes
    5. grep
    6. Tools
    7. Find a string in a file
    8. Regex Examples: single character
    9. Regex Examples: more characters
    10. Regex Examples dot .
    11. Regex Examples (character class)
    12. Regex Examples (^ in character class)
    13. Optional character
    14. Regex Examples quantifiers
    15. Quantifiers
    16. Quantifiers on character classes
    17. Exercises: Regular expressions
    18. Solutions: Regular expressions
  3. Regular Expressions II
    1. Grouping, alternatives
    2. Capturing
    3. Anchors
    4. Character classes
    5. Special character classes
    6. Exercise: Hex/Oct/Bin
    7. Exercise: Number
    8. Exercise: Roman numbers
    9. Solution: Number
    10. Solution: Hex/Oct/Bin
    11. Solution: Roman numbers
  4. Regular Expressions
    1. Regexp::Common
    2. Options and modifiers
    3. /i Case sensitivity
    4. Matching quotes
    5. /s single line
    6. /m multiple lines
    7. /x enable white spaces and comments
    8. Substitute
    9. Global substitute
    10. Greedy quantifiers
    11. minimal match
    12. Replace spaces
    13. Replace string in assembly code
    14. Full example of previous
    15. split with regular expression
    16. Fixing dates
    17. Exercise: split CGI
    18. Exercise: basename/dirname
    19. Exercise: Sort SNMP numbers
    20. Exercise: parse hours log file and give report
    21. Exercise: Parse ini file
    22. Exercise: parse perl file
    23. Solution: Split CGI
    24. Solution: filename/dirname
    25. Solution: Sort SNMP numbers
    26. Solution: parse hours log file and give report
    27. Solution: Parse ini file
    28. Solution: parse perl file
  5. Regular Expressions Cheat sheet