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

You should be able to do this using a simple tr construct to remove the apostrophe from the name. This snippet shows the idea it replaces the apostrophe with an underscore char.
#!/usr/bin/perl -w use strict; my $test = 'Bill\'s Class'; print "$test\n"; $test =~ tr/\'/_/; # this does the work print "$test \n";
  • Comment on Re: Perl to show up ' in the tile using perl script for more than 100 titles which should have a ' in the titles
  • Download Code