Strings.StrReverse Method

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Returns a string in which the character order of a specified string is reversed.

Namespace:  Microsoft.VisualBasic
Assembly:  Microsoft.VisualBasic (in Microsoft.VisualBasic.dll)

Syntax

'Declaration
Public Shared Function StrReverse ( _
    Expression As String _
) As String
public static string StrReverse(
    string Expression
)

Parameters

  • Expression
    Type: System.String
    Required. String expression whose characters are to be reversed. If Expression is a zero-length string (""), a zero-length string is returned.

Return Value

Type: System.String
Returns a string in which the character order of a specified string is reversed.

Remarks

The StrReverse function returns a string that contains the same characters as Expression, but in the opposite order.

Examples

Dim TestString As String = "ABCDEFG"
' Returns "GFEDCBA".
Dim revString As String = StrReverse(TestString)

Version Information

Silverlight

Supported in: 5, 4, 3

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.