最近在學習正規表示式 正好寫了一個在線匹配正則的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>
以上就介紹了線上正規表示式配對測試,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。