devxlogo

Handling a Final Empty Parameter

The StringTokenizer and the Missing Token tip tells us how to cater for empty parameters, for example in the comma delimited string following:

token1,token2,,token4,,,token7

The tip works well, with the following exception?it does not handle a final, empty parameter, for example:

token1,token2,,token4,,,token7,

To do this, you will need to determine if the tokenised string has a single comma as its last character. If it does, then add another empty string element to your vector/arraylist.

The additional code would look like this:

   // define an EMPTY_TOKEN constant and use in body   final String EMPTY_TOKEN = "";   ...   // If the last character is , (empty last parameter) add another vectorelement   if (input.substring(input.length() - 1).equals(","))   {       v.addElement(EMPTY_TOKEN);   }

Place the code before the last return statement.

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  How Seasoned Architects Evaluate New Tech

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.