in reply to Re: reverse a string in place
in thread reverse a string in place
I don't know how old this thread is but I found it interesting to practice manipulation for strings,
please keep in mind that I am but a few weeks into this perl code but did I meet the requirements? other than using length or split
use strict; use warnings; my $string = 'abcdefghi'; #let's find the ways to count the elements in string; my $l = length($string); #finding number of elemnts my @ind=split //,$string; #finding the number of elements #assigning the start of our last element for our looping my $n = (scalar @ind )-1; #getting the last element to start count bac +kwards optinal for (my $i=(length ($string)-1) ; $i >= 0; $i-- ){ print $ind[$i]; } print "\nfor comparison :", scalar reverse($string),"\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: reverse a string in place
by stevieb (Canon) on Jun 28, 2015 at 01:26 UTC | |
by perlynewby (Scribe) on Jun 28, 2015 at 04:34 UTC | |
by perlynewby (Scribe) on Jun 28, 2015 at 09:55 UTC | |
by stevieb (Canon) on Jun 28, 2015 at 15:36 UTC |