in reply to Re^3: SOAP::Lite - Attribute in array
in thread SOAP::Lite - Attribute in array

Note that the first regex in the loop
for($response_xml){ s/^s*//; s/\s*$//; }
should be
s/^\s*//;
Or better yet, both regexes should perhaps be
s/^\s+//; s/\s+$//;
since there is little point in replacing zero whitespace with nothing.

Replies are listed 'Best First'.
Re^5: SOAP::Lite - Attribute in array
by Anonymous Monk on Nov 05, 2008 at 15:28 UTC
    Thats funny, nothing replaced with nothing changes nothing :)

    Thanks