in reply to Re^3: SOAP::Lite - Attribute in array
in thread SOAP::Lite - Attribute in array
should befor($response_xml){ s/^s*//; s/\s*$//; }
Or better yet, both regexes should perhaps bes/^\s*//;
since there is little point in replacing zero whitespace with nothing.s/^\s+//; s/\s+$//;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: SOAP::Lite - Attribute in array
by Anonymous Monk on Nov 05, 2008 at 15:28 UTC |