Hi there!
I am totally lost so I'll take my chanses here.
Hov can I take the result from a preg_replace and send it to another funcion on the same line of code?
I want something like this:
$string = preg_replace( "/(?:9)([a-zA-ZåäöÅÄÖ0-9]+)(?:9)/", work_on_string(\1), $text );
The function work_on_string returns different values depending on what the resutl of the regexp is...
I'm sure it's possible, I just can't figure out how to do it...
Thanks in advance
jek