\xnn 匹配中ASCII代碼十六進制代碼爲nn的字符。
[\x00-\x7F] 匹配ASCII值從0-127的字符。
0-127表示單字節字符,也就是:數字,英文字符,半角符號,以及某些控制字符。
php
正則示例:spa
<?php $test_str = 'a'.chr(0).'bcdefj'.chr(0).'h'; //ASCII碼中十進制 0 對應 十六進制 00 $hex_str = '\x00'; $pattern = sprintf('/a%s[0-9a-zA-Z]{6}%sh/',$hex_str,$hex_str); preg_match_all($pattern,$test_str,$output); var_dump($output); $test_str = 'a'.chr(31).'bcdefj'.chr(31).'h'; //ASCII碼中十進制 31 對應 十六進制 1F $hex_str = '\x1F'; $pattern = sprintf('/a%s[0-9a-zA-Z]{6}%sh/',$hex_str,$hex_str); preg_match_all($pattern,$test_str,$output); var_dump($output);