RESOURCE MONITOR
CPU23%
MEMORY67%
DISK I/O45%
NETWORK89%
SYSTEM MONITOR
|
SECURITY LOG
[14:23:45]INFOUser authentication successful
[14:23:47]WARNSuspicious network activity detected
[14:23:50]INFOFirewall rule updated
NETWORK SCAN
Scanning ports: 22, 80, 443, 3389
192.168.1.100 - OPEN
192.168.1.101 - FILTERED
Scan completed: 4/4 ports

Groups and Capturing

Regex Fundamentals - Lesson 6

20 min
Progress0/5

Understanding Groups

Concept

Parentheses create groups that allow you to treat multiple characters as a single unit. Groups can be quantified, alternated, or captured.

Example

(abc)+ matches "abc", "abcabc", "abcabcabc", etc.
(red|blue) matches either "red" or "blue"

Practical Application

Groups let you apply operations to entire sequences, not just single characters