A couple of posts ago I showed how to strip bullets from a string.
$string =~ s/•//g;
The code works great on one of my scripts, but not another. Here’s what I don’t understand, the scripts are nearly identical both having been created from the same source – the main difference being different domain names. Obviously there’s something else that I’m not seeing that is messing up the code in the script that isn’t stripping the bullets. Maddening. Off to see if I can figure it out.