Imagine i have the following String:
hoi
hoe
gaat
het
i get this String from a file.
how can i make this in to a sting array like this:
String[] hallo = {
"hoi","hoe","gaat","het"
};
What would be the most simple way to achieve this?