I have a textfile with results and attendances from various football games. I want to find each number and replace them with a phrase, as well as display the whole textfile.
if($_ =~ s/\d{1,}/TEST/)
is my current regex, but it does not find floatnumbers. Any ideas?