in reply to Perl to show up ' in the tile using perl script for more than 100 titles which should have a ' in the titles
#!/usr/bin/perl -w use strict; my $test = 'Bill\'s Class'; print "$test\n"; $test =~ tr/\'/_/; # this does the work print "$test \n";
|
|---|