Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

new string utility to create a comma separated string from list #58

Open
rubberbandman62 opened this issue Jun 14, 2016 · 1 comment
Open

Comments

@rubberbandman62
Copy link

/**
 * Converts a List of String to a comma separated string of characters
 * @param stringList 
 * @return String that is one string built of all elements in stringList separated by ", "
 */
public static String convertListToCommaSeparatedString(List<String> stringList) {
    return StringUtils.join(stringList, ", ");
}
@rubberbandman62
Copy link
Author

Label: enhancement
Priority: 2
I wasn't able to set these properties

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant