Is there a more optimal way to obtain subtrings which are separated by ',' and ended by '.' than this way?
if (paramsText != null)
{
while (paramsText.contains(","))
{
params.add(paramsText.substring(0, paramsText.indexOf(",")));
paramsText = paramsText.substring(
paramsText.indexOf(",") + 1, paramsText.length());
}
params.add(paramsText);
}
"."in your code. – aioobe Mar 1 '11 at 13:22