thomas: preg_match

Hi

wie kann ich bei preg_match den vorhanden namen "bild" durch eine Variable "$variable" ersetzen

if (preg_match(/"^bild"/, $datei))

Danke

  1. Hi,

    if (preg_match(/"^bild"/, $datei))

    mit preg_replace?

    http://de.php.net/manual/de/function.preg-replace.php

    ciao
    romy

  2. Hi

    wie kann ich bei preg_match den vorhanden namen "bild" durch eine Variable "$variable" ersetzen

    $variable = "Haus";

    $text_alt = "Dies ist ein altes Bild.";
    $text_neu = preg_replace("/bild/i",$variable,$text_alt);

    Der Modifier "i" bewirkt das sowohl "Bild" als auch "bild" oder "biLD" usw... ersetzt wird.

    Danke

    Bitte