1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-06-16 07:07:37 +02:00
cheatsheets/regexp.md
2015-11-24 10:57:56 +11:00

13 lines
190 B
Markdown

---
title: Regexp
---
(?P<named_match>...)
(?:invisible group)
(?!negative look-ahead)
(?=positive look-ahead)
(?<!negative look-behind)
(?<=positive look-behind)