hello,
this may be easy but doesn't work for me.
I have a string that contains several lines (that's the ouput of a CVS update).
I'd like to transform it to an array of lines.
i'm using :
@myarray = split(/\n/, $output);
but that doesn't split anything...
any idea ?
thanks
Adrien
this may be easy but doesn't work for me.
I have a string that contains several lines (that's the ouput of a CVS update).
I'd like to transform it to an array of lines.
i'm using :
@myarray = split(/\n/, $output);
but that doesn't split anything...
any idea ?
thanks
Adrien