Python Regular expressions -part #4 - Character Sets - Custom Character sets

preview_player
Показать описание
In this video series, we will be tackling Python Regular Expressions from beginners to advanced.

This video goes over:
1) additional character sets
2) creating your own character set (custom sets)

Don't forget to comment on what you would like to see.

Thanks for stopping by =).

Code to this series can be found at my github:

Рекомендации по теме
Комментарии
Автор

Dude you made my concepts. I was struggling on regular expressions for long time. Thanks and keep making videos. You know how to teach better than most of the people

HabibKhan-kjum
Автор

I am watching in 2019 and this tutorial is outstanding.

sandeepkr
Автор

Such a great informative towards regular expression....🎉

mallikarjuna
Автор

I keep coming back to these videos for a quick refresh on regex.Thanks

anirvansen
Автор

Wooahh!You have literally made regex easy to understand!Appreciate your Efforts.Thank you so much

anirudhrajhgopal
Автор

I found these tutorial very informative. Thank you for taking the effort to spread the knowledge.

rajeevkrishnamurthi
Автор

2020 and its super helpful. Incredible.

bhosh
Автор

Regular Expressions part 4 - Character sets and custom character sets

Comment on what you liked/disliked as well as what videos you would like to see.

Thank you for stopping by.

PyMoondra
Автор

you should make more videos on python topics. Its very nicely handled and way of teaching is awesome.
regex was weaker point but not anymore

kaustavdivine
Автор

Nice videos appreciate your research on regular expression !! Can you also make video on web scrapping !!

MrMallesh
Автор

This is really well done! Thanks for the information!

ianmcdonald
Автор

very good explanation. Thank you very much

sreenivasuludoniparthi
Автор

In cell 61 you can get rid of new line by using replace. e.g re.search('.+', str1, flags=re.DOTALL).group().replace("\n", "")

rajeevkrishnamurthi
Автор

Thanks for videos they are really good!
The '\s' at the end, must be a special character in Regex not in python, since in python that '\s'
does nothing, not like \n which sets you into a new line.

vikramsarabhai
Автор

What does the outer parenthesis do in "(re.findall('\S+', string))"? Looks like it doesn't convert the list into tuple

conanh
Автор

Thanks for the videos! They are probably the best ones out there for explaining regex. (y)
I have trouble matching a backslash.
When i do the following, it prints out two backslashes even though my string just has one -
>>> re.findall('[A-Z, "\\\]', 'Hi There, he said "see ya" \ ')
['H', 'T', ', ', '"', '"', '\\']
>>>
Trying the below just errors out -
>>> re.findall('[A-Z, "\\]', 'Hi There, he said "see ya" \ ')

nagavolukrishna
Автор

What does flags mean in regular expression?

rafaelperezmederos