最近在学习正则表达式 正好写了一个在线匹配正则的
PHP 拿出来与大家
分享~
<?PHP
//正则表达式学习系统
if($_POST['text'])
{
$str=$_POST['text'];//file_get_contents("a.dat");
preg_match_all('/'.$_POST['reg'].'/',$str,$s);
print_r($s);
}
?>
<Meta charset="utf-8">
<title>Reg learning</title>
<link rel="stylesheet" href="/assets/css/amazeui.min.css">
<div class="am-g">
<div class=" col-md-8 col-sm-centered">
<form class="am-form" action="#" method="post">
<fieldset class="am-form-set">
<input type="text" id="text" name="text" placeholder="text">
<input type="text" id="reg" name="reg" placeholder="reg">
</fieldset>
<div><button type="submit" class="am-btn am-btn-primary am-btn-block">match!</button></div>
</form>
</div>
</div>