Re: remplace ...

2001-07-09 Thread Aaron Craig
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

RE: remplace ...

2001-07-09 Thread John Edwards
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"

remplace ...

2001-07-09 Thread perl
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);