> while (<INPUT>){
>         if(S/\>//){

'>' does not have to be escaped (this is not an error, it is the capitalized s as you 
mentioned)
You can just write this as s/>//.
$_ = a>a>a>a>';
s/>//g;
print "$_\n";

This prints
aaaa




-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to