Regular Expressions 101

Community Patterns

Last 4 charecters

0

Regular Expression
PCRE2 (PHP >=7.3)

/
.(?=.{4,}$)
/
gm

Description

This regex allows you to access the last 4 charecters in a string and manipulate them however you want

Submitted by anonymous - 2 years ago