in reply to reverse a string in place

my $string_reversed = join '', reverse(split //, $string_to_reverse);