REGULAR EXPRESSION FLAGS Simplified | Part 3

preview_player
Показать описание
This course is a work in progress. I'd be uploading the remaining lessons of this course in the coming days 😇

In this lesson, I explain 4 common flags we use in regular expressions and also walk you through how to use those flags to change the default behaviours of regular expressions.

Timestamp:
00:00 Intro
01:43 Global Flag g
03:06 Case-Insensitive Flag i
04:25 Newline Flag s
06:03 Multiline Match Flag m
09:36 Assignments

_____

_____

🌟 About Me:
Dillion Megida, creator of DEEECODE, is a Software Engineer, Developer Advocate and a Content Creator passionate about simplifying topics around Tech via articles and videos.

_____

⚡️ Connect with me:
Рекомендации по теме
Комментарии
Автор

Tnx for the course … very helpful and good explanations…

fikilekentane
Автор

This is really exciting. Im oumped for the next lesson

NNNedlog
Автор

The presentation is very mentally digestible for a newbie. The assignments at the end are helpful in reinforcing the concepts. One question, in the last assignment with /^...ing/img it looks like the global flags has no effect with the "^". If the pattern is required to have match at the beginning, does it match anywhere else on the same line. For example, hiking is better than biking.

swingoutmuseum
Автор

hello, how are you
Hello Hey

with gi - we can match both Hello, and hello.

thank you for this wonderful series

parmjeetmishra
Автор

^..ing/igm

with this we can match first word of the line. with 'i' - we can match words no matter the size (capital or small) . g - find all the words from the paragraph. and m - multiline search

parmjeetmishra