Hi @Anthony H ,
please try this:
$a = 'My $ is not your $'
$a
$a = $a -replace "\$","z"
$a
Output looks like this PS5.1 or PS7.1 :
My $ is not your $
My z is not your z
Another one:
$a = 'My $ is not your $'
$a
$a = $a -replace "\$","€"
$a
# Output:
My $ is not your $
My € is not your €
----------
(If the reply was helpful please don't forget to upvote and/or accept as answer, thank you)
Regards
Andreas Baumgarten