At 13:05 09.07.2001 +0200, [EMAIL PROTECTED] wrote:
>Hi,
>
>I want to remplace all the word "html" in "php" in some web pages ...
>
>I tried this but nothing is happening :
>
>open (TRANS, "c:\\test\\test.txt");
>
>@transformati
quot;;
while () {
s/html/php/ig;
print OUT;
}
close OUT;
close IN;
---
John
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: 09 July 2001 12:05
To: [EMAIL PROTECTED]
Subject: remplace ...
Hi,
I want to remplace all the word "html"
Hi,
I want to remplace all the word "html" in "php" in some web pages ...
I tried this but nothing is happening :
open (TRANS, "c:\\test\\test.txt");
@transformation=;
foreach $ligne (@transformation)
{
chomp($ligne);
$transform=$ligne;
$transform=~s/html/php/g;
};
close (TRANS);