Find More Than the First Match, freeCodeCamp's Regexes Tutor, Regular Expression Help 2020

Channel:
Subscribers:
8,020
Published on ● Video Link: https://www.youtube.com/watch?v=WN75jqFtQJw



Duration: 3:32
93 views
4


In this lesson, we continue looking at regexes. In previous lessons, we learned how to see whether a pattern exists within a string by using the .test method, and we also learned about the .match method which allows us to return a pattern when it is found. Flags have also been explained in previous tutorials, and today we look at finding and returning every time our pattern is found using the "g" flag. The "g" flag for a regular expression allows us to find every instance of our pattern within some text, not just the first time it is found. We are able to combine this flag with the "i" flag we recently learned to ignore casing. If we combined both flags we would essentially be returning all instances of a pattern found regardless of casing.




Other Videos By We Will Code


2020-02-13Match Beginning String Patterns, Regex Tutorials
2020-02-08Find One or More Criminals in a Hunt, Regular Expression Greedy Match Lesson
2020-02-08Find Characters with Lazy Matching, Learning about Regular Expressions in 2020, Learn Regex Features
2020-02-03Match Characters that Occur Zero or More Times, freeCodeCamp's Regex Lessons and Tutorials
2020-01-21Match Characters that Occur One or More Times,freeCodeCamp Regex Tutorials Javascript, Learn to Code
2020-01-17Match Single Characters Not Specified, Regular Expression Lesson 2020, freeCodeCamp Tutorial
2020-01-11Match Numbers and Letters of the Alphabet, Free Regex Course, freeCodeCamp Learn Regular Expressions
2020-01-10Match Letters of the Alphabet, Regular Expression Patterns, freeCodeCamp Regexes Review
2020-01-08Match Single Character with Multiple Possibilities, freeCodeCamp Regex Concepts and Challenges
2020-01-07Match Anything with Wildcard Period, freeCodeCamp's Regex Tutorials 2020, Learn Regular Expressions
2020-01-06Find More Than the First Match, freeCodeCamp's Regexes Tutor, Regular Expression Help 2020
2020-01-04Extract Matches Using Regex, freeCodeCamp Regular Expression Help, Learn Regexes
2020-01-03Ignore Case While Matching, Regular Expressions with JS 2020 Tutorial
2020-01-03Match a Literal String with Different Possibilities, Learn Regexes on freeCodeCamp, Understanding JS
2020-01-02Match Literal Strings, Learn Regular Expressions on freeCodeCamp 2020, Learn JS for Beginners 2020
2019-12-31Regular Expressions, Using the Test Method, freeCodeCamp's Learn Regex Challenges, 2020 Learn Regex
2019-12-31Introduction to the Regular Expression Challenges, A Regex Tutorial for Beginners, Learn Regex 2020
2019-12-30Handle a Rejected Promise with catch, Learn ES6 on freeCodeCamp 2020
2019-12-26Handle a Fulfilled Promise with then, freeCodeCamp's ES6 Challenges
2019-12-23Complete a Promise with resolve and reject, freeCodeCamp's Learn ES6 Challenges
2019-12-22Create a Javascript Promise, freeCodeCamp's ES6 Challenges on freeCodeCamp



Tags:
extract regex match
return regex matches
return matches regex
find all regexes