Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 551 Bytes

File metadata and controls

31 lines (26 loc) · 551 Bytes

Get-OZOReverseString

This function is part of the OZOFiles PowerShell module.

Description

Returns the reverse of a given string.

Syntax

Get-OZOStartSubString
    -String <String>

Parameters

Parameter Description
String The string to reverse. Accepts pipeline input.

Examples

Example 1

Get-OZOReverseString -String "Hello, world"
"dlrow ,olleH"

Example 2

"Hello, world" | Get-OZOReverseString
"dlrow ,olleH"

Outputs

System.String