Hey, is this whole python tutorial is good for data science??? I mean do we need all this topics to get started with data science, plz tell me i m begginer.
Personal timestamps for second, third ..nth viewings: 0:00 - What are regular expressions. 0:52 - Re module and example intro. 1:28 - Raw string in Python 2:29 - Simple examples using re.compile and finditer 5:29 - Escaping special characters with a backslash 7:04 - Use regex to search for patterns. Use of meta-characters. 10:21 - Metacharacters continued. Anchors. Word boundaries. 12:04 - Anchors continued. ^ and $ 13:55 - Practical examples. Matching phone numbers of patterns 123-456-7890 or 123.456.7890 18:58 - Precise matching using character-set 20:24- Character-set only matches one character in the set 21:27 - Match specific numbers. (800,900 phone numbers) 22:57 - Role of dash(-) within a character set. Used to specify ranges. 24:16 - Role of carets (^) within a character set. Used to negate. 25:50 - Use of quantifiers to match more than one character at once. 31:20 - Groups. Match several different patterns 33:08 - Recap of previous concepts with examples. Matching email addresses 36:56- Deciphering existing regular expressions. 39:05 - Capturing information from groups. The group method in the match object 44:07 - Back reference to reference the captured group. Sub method to perform substitution 46:35 - findall method. Just returns the matches as a list of strings 47:58 - match method. Matches at the beginning of string. 49:30 - search method. Search the entire string. 50:08 - flags . Examples: ignorecase, multiline, verbose
ChatGPT is recommending your videos when I type Create a 365 day plan for learning python including TH-cam videos and links to reading materials and anything else that might help, make it work around my schedule, I work 5am-7pm Monday to Thursday.
I really have to say that not everybody has that pedagogy you have and I really appreciate, or better said, WE really appreciate your time making those video tutorials. I always recommend you to everyone who wants to know python or even if they know already. I have learned a lot, but I always watch your videos to keep learning, even if I forgot some topics that I don't want to pass over. By another hand this the best video tutorial that I ever have seen about Regular Expressions. Thank you very much Corey.
This is the best regular expression teaching I have ever seen and believe it’s the best in the world. It covers almost everything in detail. Thank you Corey.
This was what I really wanted, i searched for python RE all over TH-cam, but none of those videos were like this! thanks corey, you are the best ptython teacher :)
these videos may be old but there still gold, i am currently learning python and most of the videos i watch are from you, Corey thank you so much for taking time to make these tutorial videos. Without them i would not be able to learn programing. Thank you
This is gold..... I'm a backend engineer with 2 yrs experience. And keep getting regex questions in job interviews recently... This tutorial concludes everything needed! Thank you so much Corey, I really appreciate it!
I was real sceptical about this video because I didn't think I would grasp this concept in less than an hour. But im only 16 minutes in and im already in love with regular expressions! Thanks for making this video, you really made my week!
Hey, is this whole python tutorial is good for data science??? I mean do we need all this topics to get started with data science, plz tell me i m begginer.
I watched several videos on python regex and they all quickly glossed over how to use them. This was the only video that actually explained it in perfect detail! Loved this video!!!
I watch lots of videos related to programming and so far I haven't seen anyone upload high quality material as consistently as you do. There's a lot of content out there nowadays but most just scratches the surface. Your videos live up to the famous quote by Einstein "Everything should be made as simple as possible, but not simpler". :)
Man, you are an AMAZING teacher. I spent a whole lot of time trying to just be able to know how this worked, and I basically understood all of what you showed here, after watching this one video. thank you so much :)
The way Corey goes incrementing what he is teaching is amazing including this topic that is a pain in the ass. You can't realize when you are learning the hardest part cos Corey made us easy. Thanks a lot!
You're by far the best teacher I've ever seen on youtube. When I listen to your lesson, everything unclear to understand gets crystal-clear. I have to say you're a wizard of python-teaching. Thank you so much
I am someone who gets easily distracted by irritation and thanks to Corey's voice, tone, articulation and all, as well as his breaking down of subject matter, I am able to pay more attention than I normally can. Mentally active, yet very peaceful. Thank you. All the best to you.
46:16 - if you're coming from the previous Regexp video, start from here to skip all the things already explained in the previous video. 43:00 - Start from here to see how groups are implemented in Python
thanks mate glad I scrolled down :) there's a part in there about reading file contents as well but that's rather obvious if you know how to read in files in python and use regex to parse their contents.
Brilliant work. This should be an example of how to teach anything on TH-cam. Clear, concise, organized, and useful. When done, just ask yourself whether you now understand Regular Expressions. I am going to go try all this stuff out while it is fresh.
Hey, is this whole python tutorial is good for data science??? I mean do we need all this topics to get started with data science, plz tell me i m begginer.
I was daunted by the thought of learning Regexes before I bumped in to this video. Now they make so much more sense, more importantly - in a logical way. Thanks a lot, Mr. Schafer.
I was so scared about RegEx before this video... I have seen lot's of python videos over the internet (especially TH-cam) and I can say you are the best and your tutorials are unique and awesome thanks a lot :)
you are a genie......with your videos i got a job ..thanks thanks thanks........i was before website developer with php ...........thanks alot of ..you save my life ...god bless you
Corey, this is one of the best explanations of regex I have found. I have been trying to wrap my mind around this for a very long time. The way you break it down and explain it is exceptional.
I can say without any hesitation that everything about this video is perfect! The pace, the beforehand-prepared, organized examples and rules, the quality of sound and voice, even your pronunciation T_T thank you!
Fantastic job!!! I don't have a programming background but I understood every single piece of code. Much better than these guys in Coursera, EDX, etc !!
I thought I would never be able to understand what Regex is , until I found this video I don't know how to thank you enough but your way of explaining is priceless.
Reading this topic in the books was giving me a lot of headaches, but your video just made it a breeze to understand the concept of RegEx. Thanks a ton
It was such a great tutorial. This was my first time learning Regex, and I didn't know you'll break it down this much simpler. Great explanation! Thanks a lot! ❤
sentence = 'this was THE BEST regex tutorial I have watched!!!' pattern=re.compile(r'(the\sbest)', re.IGNORECASE) match = pattern.search(sentence) print('LITERALLY ' + str(match.group(0))) thx ^^
I tried to learn regex many times but lack of basic understanding in the tutorials left me with no interest and quit. But telling you this has been the best in explaining each and everything clearly and now i'm so confident in applying the same. Thanks a lot corey. You are the best.
this tutorial really gives enlightment to the regular expression topic, finally I think I understand about regex, I've tried to understand about regex but feel difficult before this video. your explanation is superb. Thanks Corey, really appreciate your tutorial.
Friend let me tell you something, I usually cant stand long videos especially when it comes to programming. BUT MY LORD THIS WAS AN AMAZING TUTORIAL. THANK YOU. THIS IS 10/10 WORK RIGHT HERE.
You are gem as a teacher, i wish i could learn the skill of teaching from you. Everything is just excellent. Regarding RegEx, i always skipped or hated to go through this topic but you made it hell lot of easy for all of us. Those who aren't aware of you, are actually missing out some good stuff. Thanks a ton for creating such videos with such precision, would request you to create some on DS and algorithms, it will be a big help for people like me :) who never understood complexity or Big O concepts :( just like RegEx.
Thanks very much for the video. I find your videos very helpful . I had started to give up on learning programming but you have made me want to stay at it. Thanks a million
At some point, I thought to myself: is this really a free video or a paid course? RegEx had given me sleepless nights. Articles I'd read kept confusing me with various weird combinations. Until I found this video. I'm over delighted. Thanks a bunch. Now I'm pretty confident reading those articles of RegEx that caused me headaches before.😊😜😂
Amazingly useful. Never thought I'd see the day when a tutorial actually helped without directly disscussing my issue, but good god this one manages it. Amazing.
bro, I'm starting to realize that regex could've saved me so much time. All the coding spent using if states to make sure syntax was correct. I could cry
Major props, Corey! This tutorial is hands down one of the best I've seen on regex in python. The clarity of your explanations made it a breeze to grasp a big thanks for sharing this knowledge.
Hey, is this whole python tutorial is good for data science??? I mean do we need all this topics to get started with data science, plz tell me i m begginer.
wow 7 years old, oldie but goodie, oh my goodness! not only was this fun, but also technically so sound it is still good. on top of that Corey has the patience and teaching skill that is rare with tech folks with deep technical know how. It helped me wrangle syslog files with inconsistent data with ease! I salute you sir! thanks so much!
I commented on the other regex video you did, but last night and today I watched this video and again took really detailed notes. Today I was working on something where I had to strip off a bunch of characters and I thought, “you know what, I think I can just write a regular expression to do this instead of .strip().etcetc” So I wrote a pattern to match my string with re.compile(), then used var.sub(r’\groupnumberhere’), appended to a new list, and accomplished exactly what I needed to quickly and easily instead of having to .strip(), etc. I used to be so intimidated by this stuff; really can’t thank you enough!
You Saved My Time , Because i was watching this video while i was eating and after that i will see the python re module but you saved my time now i don't have to read all that python3 re library. THANKYOU!!!!!!!!!!!
I have seen many tutorials and blogs for regular expression but was not able to understand, But your way of teaching is super awesome it help me understand the complex regex expression very easily.... Really impeccable teaching.
Amazing!!! I have been struggling for days with learning material from my university and other document on the internet until I found your video. Thanks a lot. You are simply amazing with your style of teaching.
Corey, Your way of teaching is impeccable.
*Your
*teaching is
@@omarkhan5223 cheers mate thanks for fixing his fucking English now Corey can properly understand his compliment
H
Hey, is this whole python tutorial is good for data science??? I mean do we need all this topics to get started with data science, plz tell me i m begginer.
Personal timestamps for second, third ..nth viewings:
0:00 - What are regular expressions.
0:52 - Re module and example intro.
1:28 - Raw string in Python
2:29 - Simple examples using re.compile and finditer
5:29 - Escaping special characters with a backslash
7:04 - Use regex to search for patterns. Use of meta-characters.
10:21 - Metacharacters continued. Anchors. Word boundaries.
12:04 - Anchors continued. ^ and $
13:55 - Practical examples. Matching phone numbers of patterns 123-456-7890 or 123.456.7890
18:58 - Precise matching using character-set
20:24- Character-set only matches one character in the set
21:27 - Match specific numbers. (800,900 phone numbers)
22:57 - Role of dash(-) within a character set. Used to specify ranges.
24:16 - Role of carets (^) within a character set. Used to negate.
25:50 - Use of quantifiers to match more than one character at once.
31:20 - Groups. Match several different patterns
33:08 - Recap of previous concepts with examples. Matching email addresses
36:56- Deciphering existing regular expressions.
39:05 - Capturing information from groups. The group method in the match object
44:07 - Back reference to reference the captured group. Sub method to perform substitution
46:35 - findall method. Just returns the matches as a list of strings
47:58 - match method. Matches at the beginning of string.
49:30 - search method. Search the entire string.
50:08 - flags . Examples: ignorecase, multiline, verbose
Thank you so much these time stamps have saved me so much time
3 months ago when I saw this comment, I thought it was kinda dumb. now its my second, third, nth time going through this comment lmao
YOU ARE A REALLY GOOD MAN
how do we use underline( not underscore) in re python?
pin this comment
Only good teachers prepare their lessons beforehand. This video is very informative, seamless, and so helpful
ChatGPT is recommending your videos when I type Create a 365 day plan for learning python including TH-cam videos and links to reading materials and anything else that might help, make it work around my schedule, I work 5am-7pm Monday to Thursday.
That's such a good idea. I'm now going to do that to make myself a selflearning lesson plan now.
I really have to say that not everybody has that pedagogy you have and I really appreciate, or better said, WE really appreciate your time making those video tutorials. I always recommend you to everyone who wants to know python or even if they know already. I have learned a lot, but I always watch your videos to keep learning, even if I forgot some topics that I don't want to pass over. By another hand this the best video tutorial that I ever have seen about Regular Expressions. Thank you very much Corey.
My feelings exactly. Corey is an excellent teacher! So grateful for these videos :)
Well spoken, Stevens Brito !
This is the best regular expression teaching I have ever seen and believe it’s the best in the world. It covers almost everything in detail. Thank you Corey.
This was what I really wanted, i searched for python RE all over TH-cam, but none of those videos were like this! thanks corey, you are the best ptython teacher :)
Thanks! I'm glad you found it helpful
@@coreyms how do we use underline( not underscore) in re python?
these videos may be old but there still gold, i am currently learning python and most of the videos i watch are from you, Corey thank you so much for taking time to make these tutorial videos. Without them i would not be able to learn programing. Thank you
This is gold..... I'm a backend engineer with 2 yrs experience. And keep getting regex questions in job interviews recently... This tutorial concludes everything needed! Thank you so much Corey, I really appreciate it!
Amazing tutorial. I gave up watching my professor's video and came to this.
This video needs to go viral!!
OMG. how can you be so fluent and focused in a 53min video? You're the ultimate teacher. Thank you
I was real sceptical about this video because I didn't think I would grasp this concept in less than an hour. But im only 16 minutes in and im already in love with regular expressions! Thanks for making this video, you really made my week!
My mind doesn't resist to learn python RE while Corey teaches.
God bless you.
Hey, is this whole python tutorial is good for data science??? I mean do we need all this topics to get started with data science, plz tell me i m begginer.
I watched several videos on python regex and they all quickly glossed over how to use them. This was the only video that actually explained it in perfect detail! Loved this video!!!
Never ever in my life I had a better teacher than Corey! You are awesome!
You're by far the greatest teacher I've listened to on any subject matter. God bless you brother.
I watch lots of videos related to programming and so far I haven't seen anyone upload high quality material as consistently as you do. There's a lot of content out there nowadays but most just scratches the surface. Your videos live up to the famous quote by Einstein "Everything should be made as simple as possible, but not simpler". :)
Thank you! I appreciate that.
After almost SEVEN YEARS, This video is still the best video on youtube for regex explaination. Thanks for the beautiful content👏
Man, you are an AMAZING teacher. I spent a whole lot of time trying to just be able to know how this worked, and I basically understood all of what you showed here, after watching this one video. thank you so much :)
I too searched the internet without luck until I saw this video: this starts at step 1 and moves quickly forward - nice job Corey and thanks.
For the first time,, I have understood regular expression coz of this tutorial. And am going to contribute. Thank you so much
The way Corey goes incrementing what he is teaching is amazing including this topic that is a pain in the ass. You can't realize when you are learning the hardest part cos Corey made us easy. Thanks a lot!
You're by far the best teacher I've ever seen on youtube. When I listen to your lesson, everything unclear to understand gets crystal-clear. I have to say you're a wizard of python-teaching. Thank you so much
I am someone who gets easily distracted by irritation and thanks to Corey's voice, tone, articulation and all, as well as his breaking down of subject matter, I am able to pay more attention than I normally can. Mentally active, yet very peaceful. Thank you. All the best to you.
Simply superb. Corey has converted a complex concept into an easy and simple with his excellent teaching skills. Thank you Corey!!
I searched across the 7 seas of the internet.
But I couldn't find any better tutorial in the internet. Cheers Corey
46:16 - if you're coming from the previous Regexp video, start from here to skip all the things already explained in the previous video.
43:00 - Start from here to see how groups are implemented in Python
Thanks!
@@alice_hml No sweat! :)
damn it, i just see this when i finish the video
thanks mate glad I scrolled down :) there's a part in there about reading file contents as well but that's rather obvious if you know how to read in files in python and use regex to parse their contents.
Actually watch the first 7 minutes on start and skip to 43:00
Brilliant work. This should be an example of how to teach anything on TH-cam. Clear, concise, organized, and useful. When done, just ask yourself whether you now understand Regular Expressions. I am going to go try all this stuff out while it is fresh.
Straight to the point means Corey Schafer tutorials.
Hey, is this whole python tutorial is good for data science??? I mean do we need all this topics to get started with data science, plz tell me i m begginer.
I was daunted by the thought of learning Regexes before I bumped in to this video. Now they make so much more sense, more importantly - in a logical way. Thanks a lot, Mr. Schafer.
I was so scared about RegEx before this video...
I have seen lot's of python videos over the internet (especially TH-cam) and I can say you are the best and your tutorials are unique and awesome
thanks a lot :)
you are a genie......with your videos i got a job ..thanks thanks thanks........i was before website developer with php ...........thanks alot of ..you save my life ...god bless you
Corey, this is one of the best explanations of regex I have found. I have been trying to wrap my mind around this for a very long time. The way you break it down and explain it is exceptional.
Previously, I've never understood on the Regex until I found your video. It make me more comfortable with Regex. Thank you for this valuable video.
I'm 2 minutes in, and have learned more than in past 3 days. Keep on the good work!
I can say without any hesitation that everything about this video is perfect! The pace, the beforehand-prepared, organized examples and rules, the quality of sound and voice, even your pronunciation T_T thank you!
Fantastic job!!! I don't have a programming background but I understood every single piece of code. Much better than these guys in Coursera, EDX, etc !!
I have taken many paid courses on this topic and yet your free tutorial is the best so far, you were born to teach!
Thank you so much for the tutorial. Through this entire 1 hr session I felt like I know regex properly. Very confident with my regex skillls.
I thought I would never be able to understand what Regex is , until I found this video I don't know how to thank you enough but your way of explaining is priceless.
BEST regex explanation I've ever watched. Thanks!
Reading this topic in the books was giving me a lot of headaches, but your video just made it a breeze to understand the concept of RegEx. Thanks a ton
I just found this video today, and watched the ENTIRE thing! Thank you thank you! It was absolutely fantastic.
I don't often comment on any youtube video even if I like it but the teaching method in this video is outstanding !!!!!!!!
It was such a great tutorial. This was my first time learning Regex, and I didn't know you'll break it down this much simpler. Great explanation!
Thanks a lot! ❤
The best regular expression tutorial I have seen till today.
I just loved it.
This is a masterpiece, you're the greatest teacher I've found on youtube Corey. Thank you very much!
Thank you so so much for this video! I tried reading the docs but it confused me all over, I'm so thankful that your videos exist on youtube for free.
I have watched multiple videos on regex but none of them like this. This is really really GOOD !!
sentence = 'this was THE BEST regex tutorial I have watched!!!'
pattern=re.compile(r'(the\sbest)', re.IGNORECASE)
match = pattern.search(sentence)
print('LITERALLY ' + str(match.group(0)))
thx ^^
Thank you, Corey. I'm finally beginning to see the light at the end of the regex tunnel. 😀 Your video was a huge help.
I tried to learn regex many times but lack of basic understanding in the tutorials left me with no interest and quit. But telling you this has been the best in explaining each and everything clearly and now i'm so confident in applying the same. Thanks a lot corey. You are the best.
this tutorial really gives enlightment to the regular expression topic, finally I think I understand about regex, I've tried to understand about regex but feel difficult before this video. your explanation is superb. Thanks Corey, really appreciate your tutorial.
Sharing your knowledge with people is, above all, a highly meritorious act according to my religion.
Was searching for this *_*
And I got notified that Corey uploaded new video on re module 😎 my search ends here. Liked before viewing it.
Friend let me tell you something, I usually cant stand long videos especially when it comes to programming. BUT MY LORD THIS WAS AN AMAZING TUTORIAL. THANK YOU. THIS IS 10/10 WORK RIGHT HERE.
You are gem as a teacher, i wish i could learn the skill of teaching from you. Everything is just excellent. Regarding RegEx, i always skipped or hated to go through this topic but you made it hell lot of easy for all of us. Those who aren't aware of you, are actually missing out some good stuff. Thanks a ton for creating such videos with such precision, would request you to create some on DS and algorithms, it will be a big help for people like me :) who never understood complexity or Big O concepts :( just like RegEx.
Hands down, the best video on regular expressions on TH-cam... I loved both of your videos on regular expressions...
Best Tutorial on Regex
Man! Ive avoided learning regex for many years just because it looked scary..Now I just learnt it here in an hour! Thanks a lot.
Best intro on Regex ever :-) Kudos.
Easiest and most effective Regx explanation i have ever seen.
Thanks very much for the video. I find your videos very helpful . I had started to give up on learning programming but you have made me want to stay at it. Thanks a million
I'm not gonna lie, this is the first programming channel I subscribed to for over an year. Excellent content. Thanks !
Absolutely! "It is pretty fu\w{5} powerful." 16:16
Searched for RE all over TH-cam and none of the other videos are even close to this video,amazing bro
Thank you so much really appreciate it
I m keenly looking for advanced features video for Regex. You are the best teacher.
Long live and prosper Corey!
I watch your videos to understand the most difficult subjects that I fail to comprehend on other self-learning platforms.
Great video. i was clueless just trying to read about re on my own.
One of the best RegEx tutorials I have come across so far on the web. You made regex look so easy!!
At some point, I thought to myself: is this really a free video or a paid course?
RegEx had given me sleepless nights. Articles I'd read kept confusing me with various weird combinations. Until I found this video.
I'm over delighted.
Thanks a bunch.
Now I'm pretty confident reading those articles of RegEx that caused me headaches before.😊😜😂
Amazingly useful. Never thought I'd see the day when a tutorial actually helped without directly disscussing my issue, but good god this one manages it. Amazing.
this man is the goat. I went from hating regular expressions to learning them after this video
thank you so much Mr Corey , from now on I'm considering you a very valuable asset :)
Your videos are my first go-to on topics I found to be complex. Thank you Corey for these mind-blowing contents.
Corey, You are My Rockstar Programmer!!!
This is the best regex tutorial I’ve seen! I recommend this video to anyone that wants to learn regex.
bro, I'm starting to realize that regex could've saved me so much time. All the coding spent using if states to make sure syntax was correct. I could cry
Major props, Corey! This tutorial is hands down one of the best I've seen on regex in python. The clarity of your explanations made it a breeze to grasp a big thanks for sharing this knowledge.
one word to describe this : r'(wow)+'
wowwowwowwow
I prefer r'w(ow)+' ;-)
@@aka5 its all about the r'wo+w' :)
Hey, is this whole python tutorial is good for data science??? I mean do we need all this topics to get started with data science, plz tell me i m begginer.
@@MayankSingh-wd6zq yes it will definitely help, whole of the data science is in some way or other based on regex and OOP!
This is the best Regular Expressions tutorial video online ever.
You need to be more famous
wow 7 years old, oldie but goodie, oh my goodness! not only was this fun, but also technically so sound it is still good. on top of that Corey has the patience and teaching skill that is rare with tech folks with deep technical know how. It helped me wrangle syslog files with inconsistent data with ease! I salute you sir! thanks so much!
This is incredible, but one thing is missing: when students come back for specific parts, timestamps would be invaluable!
I commented on the other regex video you did, but last night and today I watched this video and again took really detailed notes. Today I was working on something where I had to strip off a bunch of characters and I thought, “you know what, I think I can just write a regular expression to do this instead of .strip().etcetc” So I wrote a pattern to match my string with re.compile(), then used var.sub(r’\groupnumberhere’), appended to a new list, and accomplished exactly what I needed to quickly and easily instead of having to .strip(), etc. I used to be so intimidated by this stuff; really can’t thank you enough!
Hi what will be the regular expression code if we want to extract the full names from the data.txt file
You Saved My Time , Because i was watching this video while i was eating and after that i will see the python re module but you saved my time now i don't have to read all that python3 re library. THANKYOU!!!!!!!!!!!
Corey can you teach us django framework please
even i am waiting for his django tutorials... please corey do some videos on django framework
He is very good at teaching, I have never seen this much clear definition in explaining a concept better than Corey 🙏 thanks for your works ✌👍
Here is a free tutorial, th-cam.com/video/yDv5FIAeyoY/w-d-xo.html
but Are Schafer's python videos enough-learning to later learn Try Django 1.11?
one of the confusion topic in any scripting language is 'Regular expression' but you made it easy
Thanks Corey.
When matching email regex, why use '[a-zA-Z0-9-.]+' instead of '[\w-.]+' ?
Corey, seriously I was lost in Regex before I found this. Best tutorial I've come across!
Best Regex tutorial on YT hands down.
I have seen many tutorials and blogs for regular expression but was not able to understand, But your way of teaching is super awesome it help me understand the complex regex expression very easily.... Really impeccable teaching.
Impeccable is the word for your way of teaching. You excel in the preparation and execution of your tutorial. None better !
Cory = King Of Progressive Disclosure. Others do it well, but not at the right speed and not at the intersection of of relevance and practicality.
Amazing!!! I have been struggling for days with learning material from my university and other document on the internet until I found your video. Thanks a lot. You are simply amazing with your style of teaching.
12 minutes in and already one of the best regex videos I've seen
helpful from 14:30
search string for mr|ms{name} 29:02
summary of first half 33:21
Thank you, sir. The video is fast-paced, structured, well prepared, and concise. You must have put a lot of effort into preparing for this video.
Thank you so much! I love your way to teach! It's not to be taken for granted that so many people simply watch an hour of tutorial straight!