Companies Home Search Profile

Mastering Regular Expressions in JavaScript

Focused View

Steven Hancock

5:39:33

18 View
  • 001 Regular Expressions A Short History.mp4
    04:45
  • 002 Getting Started.mp4
    07:03
  • 002 start.zip
  • 003 Using.zip
  • 003 Using Regular Expressions in JavaScript.mp4
    13:11
  • 004 Understanding Regular Expression Flags.mp4
    05:27
  • 004 flags.zip
  • 005 Using Regexpal.mp4
    04:59
  • 006 Download Text Strings.html
  • 006 TextStrings.zip
  • 001 Introduction.mp4
    02:55
  • 001 Understanding Metacharacters.mp4
    05:11
  • 002 Using the Wildcard.mp4
    03:09
  • 003 The dotAll Flag.html
  • 004 Escaping Metacharacters.mp4
    03:46
  • 005 Matching Control Characters.mp4
    04:10
  • 006 Exercise1-start.zip
  • 006 Exercise 1 Start.mp4
    01:44
  • 007 Exercise1-end.zip
  • 007 Exercise 1 Finish.mp4
    06:59
  • 001 Using Character Sets.mp4
    07:15
  • 002 Specifying a Range in a Character Set.mp4
    10:26
  • 003 Excluding a Character Set.mp4
    04:39
  • 004 Escaping Metacharacters in a Character Set.mp4
    03:08
  • 005 Using Shorthand for Character Sets.mp4
    07:46
  • 006 Exercise2-start.zip
  • 006 Exercise 2 Start.mp4
    01:41
  • 007 Exercise2-end.zip
  • 007 Exercise 2 Finish.mp4
    03:03
  • 001 Using Repetition in Your Patterns.mp4
    11:02
  • 002 Understanding Greediness and Laziness in Regular Expressions.mp4
    09:40
  • 003 Specifying a Repetition Amount.mp4
    09:05
  • 004 Revisiting Greedy and Lazy Concepts.mp4
    03:58
  • 005 Exercise3-start.zip
  • 005 Exercise 3 Start.mp4
    01:55
  • 006 Exercise3-end.zip
  • 006 Exercise 3 End.mp4
    09:33
  • 001 Understanding Anchored Expressions.mp4
    01:09
  • 002 Using Start and End Anchors.mp4
    04:26
  • 003 Using the Multi-line Flag.mp4
    06:13
  • 004 Working with Word Boundaries.mp4
    07:04
  • 005 Writing Accurate Regular Expressions.mp4
    08:27
  • 006 Exercise4-start.zip
  • 006 Exercise 4 Start.mp4
    01:24
  • 007 Exercise 4 Finish.mp4
    06:49
  • 001 Specifying Options.mp4
    07:08
  • 002 Using Grouping.mp4
    06:41
  • 003 Group-example.zip
  • 003 Using Grouping with JavaScript.mp4
    09:37
  • 004 Capture-Example.zip
  • 004 Understanding Capturing Groups.mp4
    09:27
  • 005 Understanding Group Back References.mp4
    05:49
  • 006 Named Capture Groups.mp4
    01:39
  • 007 Lookaheads.zip
  • 007 Using Lookahead Groups.mp4
    14:35
  • 008 Using Negative Lookahead Groups.mp4
    02:49
  • 009 Using Lookbehind Groups.mp4
    03:42
  • 010 Exercise5-start.zip
  • 010 Exercise 5 Start.mp4
    01:12
  • 011 Exercise5-end.zip
  • 011 Exercise 5 End.mp4
    05:36
  • 012 Exercise 5 Follow Up.mp4
    01:57
  • 012 exercise5-followup.zip
  • 001 Introducing Unicode.mp4
    01:55
  • 002 Using Unicode Characters.mp4
    04:46
  • 003 Understanding ES6 Unicode Features.mp4
    05:16
  • 001 Applying Regular Expressions.mp4
    01:06
  • 002 Matching an Email Address.mp4
    08:03
  • 003 Matching a Twitter Handle.mp4
    03:17
  • 004 Passwords.zip
  • 004 Testing Passwords.mp4
    07:07
  • 005 Replace.zip
  • 005 Using Replace with Regular Expressions.mp4
    08:11
  • 006 Matching a Word Next to Another Word.mp4
    05:44
  • 007 Validating Dates.mp4
    07:22
  • 008 Validating Dates Revisited.mp4
    02:39
  • 009 Validating IP Numbers.mp4
    07:05
  • 010 Capturing.zip
  • 010 Capturing Matched Text.mp4
    08:16
  • 011 Discovering Information About a Match.mp4
    05:17
  • 011 Information.zip
  • 012 Iterate.zip
  • 012 Iterating Over Matches.mp4
    07:52
  • 013 Iterating Over Matches Take 2.html
  • 001 Conclusion.mp4
    03:23
  • 002 BONUS Lecture! Discounts on Other Courses.html
  • Description


    Full of Opportunities to Learn by Doing in Order to Unlock the Power of Regular Expressions or regex in JavaScript

    What You'll Learn?


    • Create basic regular expressions for matching data.
    • Make use of all the JavaScript methods that accept regular expressions.
    • Understand the differences between the varied JavaScript methods used with regular expressions.
    • Test regular expressions before deploying them in your code.
    • Understand regular expression syntax.
    • Define more complex patterns using regular expressions.
    • Use metacharacters and characters sets in defining patterns.
    • Take advantage of repetition and grouping.
    • Use anchored expressions and lookahead assertions correctly.
    • Include unicode when necessary.
    • Solve common regular expression problems in JavaScript.

    Who is this for?


  • This course is intended for JavaScript developers that would like to improve their skills in regular expressions. If you work in another language, the regular expression content can still be useful.
  • What You Need to Know?


  • Prior to taking this course, it is best if you have a working knowledge of JavaScript. As for tools, you will need a browser and a text editor.
  • More details


    Description

    Regular expressions can help you more easily solve programming problems. They are an important tool in your coding toolbox. If you have dabbled with regular expressions or not even used them before, this course is for you. You will learn the syntax and participate in numerous examples and exercise to help you integrate regular expressions into your JavaScript code.

    In Mastering Regular Expressions in JavaScript we focus on two main goals: Helping you learn regular expressions and how to construct them, and teaching you the powerful ways regular expressions can be used in JavaScript. If you work in the JavaScript language, this course will be most useful, but even if you work in another language you can use this course to learn about regular expressions as the syntax applies to many programming languages.

    This course provides numerous opportunities to apply what is being taught. In fact one of the final sections is devoted to applying regular expressions, which basically presents different scenarios and then gives you a chance to solve them before  going through it with the instructor.

    This course contains 9 sections, over 60 different lectures, over 5 hours of video tutorials, 5 exercises, 5 quizzes and 12 application lectures that will make sure you have what you need to use regular expressions in your JavaScript coding work.

    If you are ready to master regular expressions, this course is for you!

    Who this course is for:

    • This course is intended for JavaScript developers that would like to improve their skills in regular expressions. If you work in another language, the regular expression content can still be useful.

    User Reviews
    Rating
    0
    0
    0
    0
    0
    average 0
    Total votes0
    Focused display
    Category
    Steven Hancock
    Steven Hancock
    Instructor's Courses
    I have had 25+ years experience in training and product development and 20+ years working with JavaScript. I started learning JavaScript when it was a new language used for minor affects on a web site. The growth and ubiquitous nature of JavaScript both excites and inspires me.I currently work as the President and Lead Trainer at All Things JavaScript, a resource for anyone and everyone that hopes to increase their JavaScript skills and move from novice to expert.I'm doing what I love most: Teaching about technical subjects. It is so important to understand the why, not just the what and how, when it comes to technical subjects. My goal is to help thousands of JavaScript developers to get started and become experts in the field making a great living coding.I was the co-owner and President of Rapid Intake, an eLearning firm. The company was an ideal place for me to apply my training and development skills. While there I managed all development and professional service related activities. I was heavily involved in the initial development of Rapid Intake's main product, an eLearning authoring tool, which eventually lead to Rapid Intake's acquisition in 2011 by Callidus Software.In addition to JavaScript technologies, I have dabbled in other web technologies such as ActionScript, ASP, PHP, HTML, and CSS.
    Students take courses primarily to improve job-related skills.Some courses generate credit toward technical certification. Udemy has made a special effort to attract corporate trainers seeking to create coursework for employees of their company.
    • language english
    • Training sessions 60
    • duration 5:39:33
    • English subtitles has
    • Release Date 2023/12/07

    Courses related to JavaScript