码迷,mamicode.com
首页 > Web开发 > 详细

PHP 正则 空字符 / NUL字符

时间:2018-10-12 14:09:09      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:reg   字符   att   int   字节   tput   hid   amp   targe   

\xnn 匹配中ASCII代码十六进制代码为nn的字符。
[\x00-\x7F] 匹配ASCII值从0-127的字符。
0-127表示单字节字符,也就是:数字,英文字符,半角符号,以及某些控制字符。

 

正则示例:

<?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);

 

PHP 正则 空字符 / NUL字符

标签:reg   字符   att   int   字节   tput   hid   amp   targe   

原文地址:https://www.cnblogs.com/phpdragon/p/9777312.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!