Hello!
I need to extract some words from a variable called $line.
The variabled content is a string and looks like this:
product name product url product availible
The empty space is a tab (\t). How can I place the name, url and availible information in an array so that:
MyArray[0] = product name;
MyArray[1] = product url;
MyArray[2] = product availible;
?
Thanks!