CodingForums.com

CodingForums.com (http://www.codingforums.com/index.php)
-   PHP (http://www.codingforums.com/forumdisplay.php?f=6)
-   -   Resolved PHP preg_match matches help (http://www.codingforums.com/showthread.php?t=285213)

sorlaker 01-03-2013 07:10 PM

PHP preg_match matches help
 
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA


WHY ISN'T THIS WORKING!??????? AAAAAAAAAAA

PHP Code:

<pre>
<?php
    $string 
"Hello Hella Haellowwweennn World";
    
preg_match("/(\w+)?ell(\w+)?/"$string$matches);
    
print_r($matches);
?>
</pre>

I just want it to echo

Hello
Hella
Haellowwweennn

how hard could that be? :(

help pls!

sorlaker 01-03-2013 08:06 PM

Got it. Just had to use preg_match_all.. ty.


All times are GMT +1. The time now is 01:09 PM.

Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.