in reply to Re: How do I stop this from removing spaces?
in thread How do I stop this from removing spaces?

I found putting the unwanted characters in a s/$string//g; is easier than using an @array. I first though of using a white list as you mentioned, but I must have had a brain fart, because I could not figure out for the life of me an easy way to do it. I forgot \W would work. Thanks for the tip.
  • Comment on Re^2: How do I stop this from removing spaces?