mirror of
https://github.com/onkelbeh/cheatsheets.git
synced 2025-06-16 07:07:37 +02:00
13 lines
190 B
Markdown
13 lines
190 B
Markdown
---
|
|
title: Regexp
|
|
---
|
|
|
|
(?P<named_match>...)
|
|
(?:invisible group)
|
|
|
|
(?!negative look-ahead)
|
|
(?=positive look-ahead)
|
|
(?<!negative look-behind)
|
|
(?<=positive look-behind)
|
|
|