hallo, habe gerade irgendwie ne denkblockade
mein code:
Also ich möchte aus $string das Wort hallo.jpg haben. Das wäre auch schon alles, aber irgendwie hab ich da bei meinem Ausdruck etwas nicht beachtet.
mein code:
PHP-Code:
<?php
$string = "/lala/lili/lulu/hallo.jpg";
$string =
preg_replace("/(([a-z0-9\\-_]{1,})(\\.)(.+))/i", "1:$1 - 2:$2 - 3:$3 - 4:$4", $string);
echo $string;
?>
Kommentar