Voting

: max(eight, eight)?
(Example: nine)

The Note You're Voting On

php at lnx-bsp dot net
7 years ago
Not made clear in the top of page explanation, but these escaped character classes can be included within square brackets to make a broader character class. For example:

<?php preg_match( '/[\p{N}\p{L}]+/', $data ) ?>

Will match any combination of letters and numbers.

<< Back to user notes page

To Top