Hey,
Okay, so with the following code:
// assume this is full of input already
String MyInput;
String [] MySplits;
MySplits = MyInput.split(" ;");
How can I determine how many strings were returned into
MySplits without iterating from 0 to 1,000,000 and waiting
for an exception to be thrown?
Thanks,
Mike
Okay, so with the following code:
// assume this is full of input already
String MyInput;
String [] MySplits;
MySplits = MyInput.split(" ;");
How can I determine how many strings were returned into
MySplits without iterating from 0 to 1,000,000 and waiting
for an exception to be thrown?
Thanks,
Mike
Comment