$str = "(this)example";
        preg_match("/\((.*?)\)(.*)/",$str,$regs);
        $a[0] = $regs[1];
        $a[1] = $regs[1].$regs[2];

On Wed, 30 Oct 2002, Simon Dedeyne wrote:

> I have a little question. I'm having some difficulty with regular
> expressions:
>
> here it is:
> (this)example
> should be output in an array
> [0]=> this
> [1]=> thisexample
>
> I'm supposing this should be done with preg_grep, but I'm not really
> familiar with some of it's syntax for the regular expression.
> I could use some ideas,
>
>
> cheers,
> Simon
>
>


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to