When I am running the following statement:
@filtered = map {s/ //g} @outdata;
it is returning an empty list instead of the filtered list that I expected. What I am trying to do is remove every occurance of
from an array of string (which is an XML file).
Obviously, I am not understanding something. Can anyone tell me the correct way to do this, and why this isn't working for me