in reply to Trying to strip the Pipe "|" character from a string

In addition, you need to bind the s/// (or tr///) operator to the variable $value. A bare s/// or tr/// works on the special variable $_. Example:
$value =~ s/\|//g;