Hello everyone!
Any help would be much appreciated!
My problem:
I want to break up a string into separate objects.
Scenario:
I am reading a txt file into my program and I want to
separate the String in to separate categories.
String line = "BATHROOM TOI 48157 Y DOVE BWASH MCDAMIA 375ML 6 NEW" ;
String line = "BATHROOM TOI 48157 Y DOVE BWASH MCDAMIA 375ML 6 NEW" ;
to
String category = "BARTHROOM TOI" ;
String sku = "48157" ;
String tmp = "Y" ;
String description "DOVE BWASH....." ;
etc..
etc...
Any help would be much appreciated
Andy.