whats the delimiter to split string?
for the new objects,
class StringStore
{
String string;
public StringStore(String input)
{
this.string = input;
}
public String getString()
{
return this.string;
}
}
public void splitStrings (string)
{
new StringStore(string);
}
