I sort of brushed over it on my last post but this is how you reverse a string.
function get-reversestring {
[CmdletBinding()]
param (
[string]$teststring
)
$ca = $teststring.ToCharArray()
[array]::Reverse($ca)
-join $ca
}
Take the… Read the full text.