Regular expression แบบ Perl-compatible ได้สนับสนุน anchor เพิ่มเติมจากแบบ [storng]POSIX มีดังนี้
| Assertion | Meaning |
|---|---|
| \b | Word boundary (ระหว่าง \w และ \W) |
| \B | Non-word boundary (ระหว่าง \w และ \w หรือระหว่าง \W และ \W) |
| \A | Beginning of string |
| \Z | End of string หรือ ก่อน \n ในจุดสุดท้ายของ string |
| \z | End of string |
| ^ | Start of line |
| $ | End of line |
ผู้สนับสนุน