Is there a way to s/ or split() out quantifiers like +? I'm trying to replace all the + in a string with " ", but keep getting errors like "quantifier follows nothing in regex."
Nevermind. Wow, I was stupid.
$string=~tr/+/ /
or, um, escape them with a backslash.