I need to know how to remove a semicolon from user agents being passed on as a string.
My current code renders a user agent and replaces spaces with underscores.
Here is the code ...
my $newua=$UserAgent; $newua =~ tr/\+ /\//;
I know I have to use a dash to remove something (or subtract of course).