Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Beginners - Learning Regular Expressions For Programmers
Rating: 3.9 out of 5(26 ratings)
519 students

Beginners - Learning Regular Expressions For Programmers

A Basic Introduction To Using Regular Expressions In Programming
Created byInfinite Skills
Last updated 1/2017
English
English [Auto],

What you'll learn

  • To Understand How To Use Regular Expressions In Most Programming Languages

Course content

6 sections36 lectures2h 4m total length
  • Important - Working Files - Download These First0:01
  • 0101 Introduction Regular Expressions2:48

    Learn to use regular expressions, explore meta characters, and perform match and replace operations with practical examples in Java, C-sharp, JavaScript, and grep for dates and IP addresses.

  • 0102 Installing Grep In Windows3:34

    Install grep for Windows, verify it is in your path, and use it to search files and test regular expressions; next lesson covers more on grep.

  • 0103 Search Strings With Grep3:39

    Explore how to use grep to search for text in files, including strings, line numbers, and counts, and learn how regular expressions apply across languages.

  • 0104 Evaluating Regular Expressions Using Preg_Match In PHP4:06

    Learn how to evaluate regular expressions in PHP with the preg_match function, using a simple script, a slash-delimited pattern, and a string to determine matches and store results.

  • 0105 Evaluating Regular Expressions Using Objects In JavaScript4:01

    Explore evaluating regular expressions in JavaScript using the RegExp object and string methods. Learn to use test and exec, or string.match to find matches.

  • 0106 Evaluating Regular Expressions Using Patterns In C#3:49

    learn to evaluate regular expressions in c-sharp by importing the regex library, creating a regex with a pattern, collecting matches, and printing them to the console.

  • 0107 Evaluating Regular Expressions Using Classes In Java3:14

    Learn to evaluate regular expressions in Java by creating a pattern with Pattern.compile, using a Matcher to find and retrieve matches, and handling no matches found.

  • 0108 Practice Exercise - Part 13:15

    Write a JavaScript function that uses a regular expression to detect i before e after c patterns in a text field triggered by a button.

  • 0109 Practice Exercise - Part 22:37

    Practice exercise demonstrates using a regular expression in a C# console app to find misspelled words ending in ing by matching substrings in a user-provided list.

Requirements

  • PC or Mac

Description

Regular expressions are a powerful tool that can help you to find, replace and format text quickly, but they have a reputation of being extremely hard to understand. In this Regular Expressions training course, this course de-mystifies the sometimes confusing and always-difficult world of Regular Expressions, putting a very powerful tool right at your fingertips.


You will learn how to create Regular Expressions step-by-step, removing the mystery of what the characters represent and how they work together. This training video uses real world scenarios as examples to help re-enforce the lessons. Mike shows you how to validate dates, phone numbers, URLs and emails, as well as how to search for, and correct misspelled words or other content. You will explore how to implement Regular Expressions in PHP, Java, C# and JavaScript.

This video based training course for Regular Expressions is an essential reference for beginner and experienced programmers alike. Once you have completed the tutorial videos, you will have a clear understanding of what Regular Expressions are, and how to use them to solve everyday content formatting problems. Working files are included, allowing you to follow along with the author throughout the lessons.

Who this course is for:

  • Web Developers
  • Programmers