Tag: perlweeklychallenge

  • Perl Weekly Challenge – 2019-03-25

    I’m not sure that I’ll have time to do these every week, but here are my answers to this week’s two Perl Weekly Challenges. Challenge #1 Write a script to replace the character ‘e’ with ‘E’ in the string ‘Perl Weekly Challenge’. Also print the number of times the character ‘e’ found in the string. use strict; use warnings; use feature ‘say’;…