Which function is used by perl for reversing a string?
Which function is used by perl for reversing a string? Correct Answer reverse
The reverse function, which can operate on strings as well as arrays is used to reverse the characters in a string and return the reversed string. For example, $x= “abcd” ; print reverse($x) ; / prints dcba
মোঃ আরিফুল ইসলাম
Feb 20, 2025