How can I replace the string "..." ?
$TEXT = $TEXT -replace ("...","") - returns gibberish. ".." is considered a special character/token for ranges. I'm not sure how to escape it. My goal is to remove the "...".
How can I replace the string "..." ?
$TEXT = $TEXT -replace ("...","") - returns gibberish. ".." is considered a special character/token for ranges. I'm not sure how to escape it. My goal is to remove the "...".