Index: branches/dev/html/test/adachi/test4.php
===================================================================
--- branches/dev/html/test/adachi/test4.php	(revision 14540)
+++ branches/dev/html/test/adachi/test4.php	(revision 14557)
@@ -1,6 +1,11 @@
 <?php
-$value = true;
-$p = preg_replace("/<script.*?>|<\/script>/", '&lt;script&gt;', $value);
 
-var_dump($p);
+$str = 'test@<script>alert(document.cookie)</script>.com;';
+$pt = "/<script.*?>|<\/script>/";
 
+preg_matche_all($pt, $str, $match)
+
+//$p = preg_replace("/<script.*?>|<\/script>/", '&lt;script&gt;', $value);
+
+var_dump($match);
+
