Match Characters that Occur One or More Times,freeCodeCamp Regex Tutorials Javascript, Learn to Code

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



Duration: 3:01
137 views
1


Understanding regular expressions are key to becoming a well-rounded web developer and programmer. In this lesson, we learn how to find similar patterns that have characters that occur multiple or at least one time. We are able to use the plus sign (+) If we were to use the pattern "/a+/g" this would find a match in the string "abc" and would, therefore, return an array with an "a" character. ["a"] It would also find a match in the following string "aabc" and return the following array. ["aa"] Understanding that we can use this syntax to target a single character or a consecutive repeated character. It would, therefore, return ["a", "a"] if we had a string such as "abab". The a's are not together here because they don't occur one after the other.




Other Videos By We Will Code


2021-02-09freeCodeCamp Regular Expression, Restrict Possible Usernames, 2021 Coding Tutorials for Beginners
2021-02-08freeCodeCamp Regular Expressions, Match All Non-Number using Regex 2021 Coding Tutorials
2021-02-08Understanding Regular Expressions on freeCodeCamp 2021, Match all Numbers Regex Pattern Matching
2021-02-07Regular Expressions in 2021, freeCodeCamp Regex Match Everything But Letters and Numbers, Coding Vid
2021-02-06freeCodeCamp 2021 Regular Expressions Match All Letters and Numbers, Master Regex 2021 Coding lesson
2020-02-14Match Ending String Patterns Using Regexes, Regex Pattern Matching Tutorial, freeCodeCamp Coding Ex
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



Tags:
regexes
regular expressions
match characters
regex match characters
matching regular expressions
matching regex
regex matching