Upload date
All time
Last hour
Today
This week
This month
This year
Type
All
Video
Channel
Playlist
Movie
Duration
Short (< 4 minutes)
Medium (4-20 minutes)
Long (> 20 minutes)
Sort by
Relevance
Rating
View count
Features
HD
Subtitles/CC
Creative Commons
3D
Live
4K
360°
VR180
HDR
518 results
Master Python regular expressions with the re module. Learn pattern matching, search, findall, and advanced regex techniques ...
0 views
2 hours ago
In this video, we're building a regex engine from scratch - one that can handle the core features like character classes, quantifiers, ...
995 views
6 days ago
Chapters: 00:00:27 1. `re.findall()`: Finding All Matches 00:00:56 2. `re.match()`: Matching Only at the Start 00:01:26 3. Summary of ...
6 views
5 days ago
earn Regular Expressions (Regex) from scratch — practical, example-driven, and beginner-friendly. In this full tutorial you'll learn ...
59 views
Chapters: 00:00:28 1. Using `re.split()` with Multiple Delimiters 00:00:58 2. Handling Inconsistent Spacing 00:01:31 3. Limiting the ...
python3 #regularexpressions #regex.
19 views
Learn how to predict and optimize memory consumption when using Python's built-in re module for large regex matches.
4 days ago
Chapters: 00:00:27 1. Using `re.sub()` for Replacement 00:00:58 2. Controlling the Number of Substitutions 00:01:26 3. Practical ...
Chapters: 00:00:26 1. Digits: `\d` and `\D` 00:00:49 2. Word Characters: `\w` and `\W` 00:01:21 3. Whitespace: `\s` and `\S` ...
Chapters: 00:00:26 1. Matching a Simple Fixed Format (MM/DD/YYYY) 00:01:03 2. Matching Multiple Delimiters and Year Lengths ...
Chapters: 00:00:24 1. Using `re.search()` 00:00:56 2. The Match Object 00:01:23 3. Handling No Match 00:01:53 Summary.
Chapters: 00:00:27 1. Character Sets: `[]` 00:01:02 2. OR Operator and Any Character: `|` and `.` 00:01:30 3. Anchors: `^` (Start) ...
Master Python regular expressions: searching, matching, and replacing text patterns.
1 hour ago
Prepare for your LPU End Term Exams with this complete and beginner-friendly Python Regular Expressions (Regex) tutorial.
353 views
7 days ago
Chapters: 00:00:28 1. Defining the Target Data 00:00:56 2. The Extraction Pattern (Capturing Groups) 00:01:24 3. Executing the ...
Dans cette partie 5, on construit toute la couche Data d'une API FastAPI moderne, en combinant : ✓ SQLModel (Pydantic + ...
14 hours ago
In cybersecurity, log analysis is everything — but what if you don't have real production logs to practice on? In this video, we walk ...
16 views
Stop your bot from replying to everything! In this video, you'll learn how to make your Telegram bot "smart" using Message ...
10 views
1 day ago
Chapters: 00:00:28 1. Why Use Regular Expressions? 00:00:54 2. Python's `re` Module 00:01:22 3. The Raw String Prefix ('r') ...
Chapters: 00:00:25 1. Building the User Name Part (Local Part) 00:00:58 2. Building the Domain Name Part 00:01:35 3.