Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
This however does not make any changes. What am I doing wrong? If it matters, I am using perl 5.8.8.#!/usr/bin/perl -w use strict; use utf8; open (FILE, $ARGV[0]) or die "Can't read $ARGV[0].\n"; my $fileln = <FILE>; $fileln =~ tr/\’/\'/;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: "Asciitizing" utf8
by ikegami (Patriarch) on Mar 26, 2010 at 06:42 UTC | |
|
Re: "Asciitizing" utf8
by CountZero (Bishop) on Mar 26, 2010 at 07:03 UTC | |
|
Re: "Asciitizing" utf8
by Anonymous Monk on Mar 26, 2010 at 07:08 UTC |