GoLang strrev

is this article helpful? yes | no
GoLang replacement for PHP's strrev [Golang Play | edit | history]
func Strrev(s string) string {
    n := len(s)
    runes := make([]rune, n)
    for _, rune := range s {
        n--
        runes[n] = rune
    }
    return string(runes[n:])
}

PHP strrev

PHP original manual for strrev [ show | php.net ]

strrev

(PHP 4, PHP 5, PHP 7)

strrevReverse a string

Description

string strrev ( string $string )

Returns string, reversed.

Parameters

string

The string to be reversed.

Return Values

Returns the reversed string.

Examples

Example #1 Reversing a string with strrev()

<?php
echo strrev("Hello world!"); // outputs "!dlrow olleH"
?>